This repository has been archived by the owner on Jun 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 2.51 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
{
"name": "isomorphic",
"description": "An experimental isomorphic app using React & Redux",
"version": "1.0.0",
"author": "余凡 <[email protected]>",
"homepage": "https://gitlab.cform.io/lab/isomorphic",
"bugs": {
"url": "https://gitlab.cform.io/lab/isomorphic/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:lab/isomorphic.git"
},
"license": "MIT",
"scripts": {
"clean": "rm -fr source",
"start": "cross-env NODE_ENV=development nodemon --exec node server",
"debug": "cross-env NODE_ENV=debug nodemon --exec devtool server",
"test": "cross-env NODE_ENV=test mocha server/**/*.test.js --recursive --compilers js:babel-register --require common/test_helper.js",
"test:watch": "npm test -- --watch",
"stage": "cross-env NODE_ENV=production node source",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"build:server": "npm run clean && cross-env babel server -d source -s",
"slate": "rm -fr node_modules && npm install",
"lint": "eslint client server common",
"postinstall": "npm install estraverse-fb"
},
"engines": {
"node": ">=4"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"bluebird": "^3.3.4",
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"chai-immutable": "^1.5.3",
"compression": "^1.6.1",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"css-modules-require-hook": "^4.0.0",
"devtool": "^1.8.3",
"eslint": "^2.4.0",
"eslint-plugin-react": "^4.2.1",
"express": "^4.13.4",
"history": "^2.0.1",
"immutable": "^3.7.6",
"isomorphic-fetch": "^2.2.1",
"loader-utils": "^0.2.12",
"method-override": "^2.3.5",
"mocha": "^2.4.5",
"nodemon": "^1.9.1",
"postcss-loader": "^0.8.2",
"radium": "^0.16.6",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"react-router-redux": "^4.0.0",
"redbox-react": "^1.2.2",
"redux": "^3.3.1",
"redux-logger": "^2.6.1",
"serve-favicon": "^2.3.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.10.0"
}
}