-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·45 lines (45 loc) · 1.27 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
{
"name": "post-internet.github.io",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm-run-all --parallel build:*",
"build:jade": "jade -o ./ ./src/index.jade",
"build:webpack": "webpack",
"build:postcss": "postcss -c postcss.config.js",
"watch": "npm-run-all --parallel watch:*",
"watch:jade": "jade -o ./ -w ./src/index.jade",
"watch:webpack": "webpack -w",
"watch:postcss": "postcss -w -c postcss.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "NCC",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.3.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"browser-sync": "^2.11.2",
"browser-sync-webpack-plugin": "^1.0.1",
"css-loader": "^0.23.1",
"cssnano": "^3.5.2",
"file-loader": "^0.8.5",
"npm-run-all": "^1.7.0",
"postcss": "^5.0.19",
"postcss-cli": "^2.5.1",
"postcss-import": "^8.0.2",
"postcss-loader": "^0.8.2",
"precss": "^1.4.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.14"
},
"dependencies": {
"basscss": "^8.0.1",
"basscss-addons": "^1.0.0-beta4",
"jade": "^1.11.0",
"normalize.css": "^4.0.0"
}
}