-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.69 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
{
"name": "envoy.css",
"version": "1.6.19",
"description": "Envoy's internal CSS framework",
"style": "src/envoy.css",
"watch": {
"build": {
"patterns": [
"src",
"psg-theme"
],
"extensions": [
"css",
"ejs"
],
"quiet": false
}
},
"scripts": {
"start": "npm run serve && npm run watch",
"serve": "node server.js &",
"build": "postcss -c postcss.config.js && node styleGuide.js",
"minify": "postcss -u cssnano css/envoy.css -o css/envoy.min.css",
"prepublishOnly": "mkdir -p css && npm run build && npm run minify",
"watch": "npm-watch"
},
"devDependencies": {
"autoprefixer": "^6.5.4",
"babel": "6.3.26",
"babel-core": "6.4.5",
"babel-loader": "6.2.1",
"babel-preset-es2015": "6.3.13",
"css-loader": "0.23.1",
"css-mixed-properties": "1.1.0",
"cssnano": "^3.4.0",
"json-loader": "^0.5.4",
"postcss": "^5.0.14",
"postcss-calc": "5.2.0",
"postcss-cli": "2.5.0",
"postcss-color-function": "2.0.0",
"postcss-custom-properties": "5.0.0",
"postcss-custom-media": "5.0.0",
"postcss-discard-comments": "1.1.1",
"postcss-loader": "0.8.0",
"postcss-reporter": "1.3.0",
"style-loader": "0.13.0",
"webpack": "1.12.12"
},
"browserslist": [
"> 5%",
"last 2 versions"
],
"author": "Alex Baldwin",
"license": "MIT",
"keywords": [],
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"express": "^4.15.4",
"npm-watch": "^0.2.0",
"postcss": "^5.2.16",
"postcss-cli": "2.6.0",
"postcss-import": "8.1.2",
"postcss-style-guide": "^0.14.0"
}
}