-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
64 lines (64 loc) · 1.86 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "tails-ui",
"version": "0.5.5",
"description": "Clean UI based on tailwindcss",
"author": "Tyler Knipfer <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/knipferrc/tails-ui.git"
},
"bugs": {
"url": "https://github.com/knipferrc/tails-ui/issues"
},
"keywords": [
"react",
"reasonml",
"tails-ui",
"library",
"components",
"tailwindcss"
],
"scripts": {
"start": "rollup -c -w",
"build": "NODE_ENV=production rollup -c",
"precommit": "lint-staged",
"prepublishOnly": "npm run build",
"format:css": "prettier --write ./*.css ./**/*.css",
"format:js": "prettier --write ./*.{js,json} ./**/*.{js,json}",
"format:reason": "refmt --in-place src/**/*.re",
"format": "npm run format:js && npm run format:css && npm run format:reason"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"@babel/preset-react": "^7.0.0-beta.40",
"@babel/preset-stage-0": "^7.0.0-beta.40",
"bs-platform": "^2.2.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.10.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"reason-react": "^0.3.2",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^4.0.0-beta.2",
"rollup-plugin-bucklescript": "^0.6.1",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-postcss": "^1.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"uglify-es": "^3.3.9"
},
"dependencies": {
"tailwindcss": "^0.4.1"
},
"lint-staged": {
"*.{js,json}": ["prettier --write", "git add"],
"*.css": ["prettier --write", "git add"],
"src/**/*.re": ["refmt --in-place", "git add"]
}
}