-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
115 lines (115 loc) · 4.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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"author": {
"name": "Colin Meinke",
"email": "hello@colinmeinke.com",
"url": "colinmeinke.com"
},
"bugs": {
"url": "https://github.com/colinmeinke/universal-js/issues"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"express": "^4.14.0",
"react": "^15.4.0",
"react-document-title": "^2.0.2",
"react-dom": "^15.4.0",
"react-dom-stream": "^0.5.1",
"react-redux": "^4.4.6",
"redux": "^3.6.0",
"serve-favicon": "^2.3.0",
"universal-redux-router": "^2.2.0"
},
"description": "A universal Javascript starter kit inc. React, Redux, Redux Dev Tools, Universal Redux Router, CSS Modules, hot module reloading, Babel for ES2015+ and ESLint.",
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"commitizen": "^2.8.6",
"conventional-changelog-cli": "^1.2.0",
"css-loader": "^0.25.0",
"cz-conventional-changelog": "^1.2.0",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^1.0.1",
"json": "^9.0.4",
"json-loader": "^0.5.4",
"mocha": "^3.1.2",
"postcss-calc-function": "^1.1.0",
"postcss-color-function": "^2.0.1",
"postcss-custom-props": "^1.1.2",
"postcss-import": "^8.2.0",
"postcss-loader": "^1.1.1",
"react-addons-test-utils": "^15.4.0",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.1.1",
"snazzy": "^5.0.0",
"standard": "^8.5.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
},
"engines": {
"node": "6"
},
"keywords": [
"babel",
"boilerplate",
"css modules",
"es2015",
"eslint",
"example",
"flux",
"hot module reloading",
"javascript",
"postcss",
"progressive enhancement",
"react",
"redux",
"redux dev tools",
"standard",
"starter kit",
"universal",
"universal redux router",
"webpack"
],
"license": "ISC",
"main": "./dist/server.min.js",
"name": "universal-js",
"repository": {
"type": "git",
"url": "https://github.com/colinmeinke/universal-js"
},
"scripts": {
"build:dev": "npm run tidy && npm run build:dev:client && npm run build:dev:server && npm run createStatic:dev",
"build:dev:client": "webpack --config ./webpack/dev/client.babel.js",
"build:dev:server": "webpack --config ./webpack/dev/server.babel.js",
"build:pro": "npm run tidy && npm run build:pro:client && npm run build:pro:server && npm run createStatic:pro",
"build:pro:client": "webpack --config ./webpack/pro/client.babel.js",
"build:pro:server": "webpack --config ./webpack/pro/server.babel.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"commit": "git-cz",
"createStatic:dev": "npm run createStaticJs:dev && npm run createStaticCss:dev",
"createStatic:pro": "npm run createStaticJs:pro && npm run createStaticCss:pro",
"createStaticCss:dev": "mkdir -p ./static/css && cat ./src/common/config/index.json | json development.styles | json -ga | xargs -I % cp % ./static/css/",
"createStaticCss:pro": "mkdir -p ./static/css && cat ./src/common/config/index.json | json production.styles | json -ga | xargs -I % cp % ./static/css/",
"createStaticJs:dev": "mkdir -p ./static/js && cp ./dist/client.js.map ./static/js/ && cat ./src/common/config/index.json | json development.scripts | json -ga file | xargs -I % cp % ./static/js/",
"createStaticJs:pro": "mkdir -p ./static/js && cat ./src/common/config/index.json | json production.scripts | json -ga file | xargs -I % cp % ./static/js/",
"fix": "standard --fix",
"lint": "standard --verbose | snazzy",
"start": "npm run start:pro",
"start:dev": "NODE_ENV=development node ./dist/server.js",
"start:pro": "NODE_ENV=production node ./dist/server.min.js",
"test": "mocha --compilers js:babel-core/register,css:test/compiler.js test/**/*.js",
"tidy": "rm -rf ./dist ./static/css ./static/js"
},
"version": "3.1.0"
}