-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.34 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
{
"name": "react-boilerplate",
"version": "0.0.0",
"description": "Boilerplate with React, Redux, Sass, Jest & Hot-Reload",
"main": "./scripts/preview.js",
"config": {
"express": 3000,
"dev": 3000
},
"scripts": {
"dev": "cross-env NODE_ENV=development node ./scripts/dev.js",
"preview": "cross-env NODE_ENV=development node ./scripts/preview.js",
"start": "cross-env NODE_ENV=production node ./scripts/production.js",
"test-async": "jest --config ./jest/async.json --forceExit",
"test-sync": "jest",
"test": "npm run test-sync && npm run test-async",
"deploy": "cross-env NODE_ENV=production node ./scripts/deploy.js",
"lint": "eslint app/ --ext .jsx,.js && stylelint app/styles/**/*.scss",
"clean": "rimraf public/"
},
"private": true,
"author": "Diego Lopez Garcia <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chalk": "^1.1.3",
"cross-env": "^3.1.4",
"css-loader": "^0.25.0",
"express": "^4.13.4",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"img-loader": "^1.3.1",
"ncp": "^2.0.0",
"node-env-file": "^0.1.8",
"node-sass": "^3.7.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"script-loader": "^0.7.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel-jest": "^15.0.0",
"deep-freeze": "0.0.1",
"enzyme": "^2.7.1",
"eslint": "^3.9.1",
"eslint-config-fbjs": "^1.1.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.25.2",
"eslint-plugin-react": "^5.2.2",
"fbjs": "^0.8.4",
"jest": "^17.0.3",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^1.3.0",
"react-test-renderer": "^15.3.2",
"redux-immutable-state-invariant": "^1.2.4",
"redux-mock-store": "^1.2.1",
"stylelint": "^7.7.1",
"webpack-dev-server": "^1.14.1"
},
"jest": {
"testRegex": "(/__tests__/.*test)\\.jsx?$"
}
}