-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.71 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "cssinjs",
"private": true,
"version": "0.14.0",
"description": "JSS landing page",
"author": "Pavel Davydov",
"engines": {
"node": "0.6.x"
},
"scripts": {
"start": "cross-env NODE_ENV=development PORT=3000 node ./bin/webpack-dev-server.js",
"all:prod": "npm run clean && npm run build:prod && npm run build-html",
"all:dev": "npm run clean && npm run build:dev && npm run build-html",
"build:dev": "cross-env NODE_ENV=development webpack --config ./webpack.config.dev",
"build:prod": "cross-env NODE_ENV=production webpack --config ./webpack.config.prod",
"build-html": "cross-env NODE_ENV=production node ./bin/build-html",
"lint": "eslint ./src",
"lint:staged": "lint-staged",
"clean": "rimraf -fr './docs/!(CNAME)**'",
"postversion": "npm run all:prod && git add . && git commit -am 'release build'"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.23.0",
"common-tags": "^1.4.0",
"compression-webpack-plugin": "^0.4.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^4.0.0",
"css-loader": "^0.28.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-jss": "^3.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.7.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.1.0",
"html-minifier": "^3.2.3",
"ignore-styles": "^5.0.1",
"json-loader": "^0.5.4",
"lint-staged": "^3.2.5",
"module-alias": "^2.0.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.5.4",
"style-loader": "^0.16.1",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"babel-polyfill": "^6.20.0",
"classnames": "^2.2.5",
"css-functions": "^1.0.5",
"is-absolute-url": "^2.1.0",
"jss": "^9.8.0",
"jss-isolate": "^5.1.0",
"jss-preset-default": "^4.3.0",
"markdown-react-js": "^0.3.0",
"normalize-jss": "^3.0.0",
"polished": "^1.1.2",
"preact": "^8.1.0",
"preact-compat": "^3.10.0",
"prismjs": "^1.5.1",
"react-jss": "^8.3.3",
"react-motion": "^0.4.5",
"react-router": "^3.0.5",
"react-router-transition": "0.0.6",
"react-scroll": "^1.4.4",
"resolve-url": "^0.2.1",
"whatwg-fetch": "^2.0.1"
},
"lint-staged": {
"./src ./tests ./*.js": [
"eslint",
"git add"
]
},
"pre-commit": "lint:staged",
"license": "MIT"
}