-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·74 lines (74 loc) · 2.29 KB
/
package.json
File metadata and controls
executable file
·74 lines (74 loc) · 2.29 KB
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
{
"name": "react-stack",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"clean": "./node_modules/.bin/rimraf dist",
"start": "npm run clean && node server.js",
"build": "npm run clean && ./node_modules/.bin/webpack -p --config ./webpack.production.config.js --progress --profile --colors",
"start-production": "NODE_ENV=production PORT=8080 node server.js",
"production": "npm run build && npm run start-production",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TondaHack/react-stack.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TondaHack/react-stack/issues"
},
"homepage": "https://github.com/TondaHack/react-stack#readme",
"devDependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.25.0",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.17.0",
"jsx-loader": "^0.13.2",
"path": "^0.12.7",
"postcss": "^5.2.2",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.13.0",
"postcss-url": "^5.1.2",
"react-addons-perf": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^1.3.1",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.15.0"
},
"dependencies": {
"babel-jest": "^18.0.0",
"babel-polyfill": "^6.22.0",
"expect": "^1.20.1",
"immutable": "^3.8.1",
"jest": "^18.1.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-immutable-proptypes": "^2.1.0",
"react-mdl": "^1.7.2",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"webpack": "^1.14.0"
}
}