-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.9 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
{
"name": "slater",
"version": "0.3.1",
"scripts": {
"start": "slater watch",
"deploy:production": "slater deploy --env production",
"dev": "concurrently 'slater watch' 'npm run watch:js' 'npm run watch:css'",
"build": "npm run build:js && npm run build:css",
"watch:assets": "concurrently 'npm run watch:js' 'npm run watch:css'",
"build:theme": "theme upload",
"watch:theme": "theme watch",
"build:js": "NODE_ENV=production webpack --progress",
"watch:js": "NODE_ENV=development webpack -w",
"build:css": "NODE_ENV=production postcss styles/main.css -o src/assets/main.css",
"watch:css": "NODE_ENV=development postcss styles/main.css -w -o src/assets/main.css"
},
"author": "iamkevingreen",
"license": "MIT",
"devDependencies": {
"@slater/cli": "^0.6.2",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"concurrently": "^3.5.0",
"cssnano": "^3.10.0",
"lodash-webpack-plugin": "^0.11.4",
"postcss": "^6.0.2",
"postcss-calc": "^6.0.0",
"postcss-cli": "^4.1.0",
"postcss-cssnext": "^2.11.0",
"postcss-discard-comments": "^2.0.4",
"postcss-import": "^10.0.0",
"postcss-nested": "^2.0.2",
"standard": "^10.0.2",
"standard-loader": "^6.0.1",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^3.0.0",
"webpack-dashboard": "^1.0.0-5"
},
"dependencies": {
"form-serialize": "^0.7.2",
"mitt": "^1.1.2",
"operator": "^1.2.0",
"picoapp": "^2.0.2",
"svbstrate": "^4.1.0",
"unfetch": "^3.0.0",
"w2t": "0.0.2"
}
}