This repository has been archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.88 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "aviate",
"version": "1.0.6",
"files": [
"lib",
"cli.js"
],
"scripts": {
"lint": "xo",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"xo",
"prettier --single-quote --no-semi --write",
"git add"
]
},
"xo": {
"extends": "prettier",
"rules": {
"unicorn/no-process-exit": 0
}
},
"dependencies": {
"autoprefixer": "^7.1.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-react-require": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"brighten": "^0.0.1",
"bytes": "^3.0.0",
"chalk": "^2.1.0",
"cli-table": "^0.3.1",
"copy-dir": "^0.3.0",
"css-loader": "^0.28.10",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"find-up": "^2.1.0",
"loglevel": "^1.4.1",
"lost": "^8.2.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.5.3",
"node-version": "^1.0.0",
"postcss-custom-media": "^6.0.0",
"postcss-discard-duplicates": "^2.1.0",
"postcss-loader": "^2.1.0",
"postcss-responsive-type": "^1.0.0",
"postcss-unique-selectors": "^2.0.2",
"postcss-zindex": "^2.2.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"styled-jsx": "^1.0.10",
"svg-spritemap-webpack-plugin": "^1.0.3",
"svgo-loader": "^1.2.1",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.6.0",
"webpack-format-messages": "^1.0.0"
},
"bin": {
"aviate": "./cli.js"
},
"devDependencies": {
"eslint-config-prettier": "^2.3.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.4",
"prettier": "^1.6.1",
"uglify-js": "^3.0.28",
"uglifyjs-webpack-plugin": "^0.4.6",
"xo": "^0.18.2"
}
}