-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.46 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
75
76
77
78
79
80
{
"name": "react-backend-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production node ./initializers/webpack/build.js",
"start": "NODE_ENV=production node initializers/server/index.js",
"start-dev": "NODE_ENV=development node initializers/server/index.js",
"test": "jest --config jest.config.json"
},
"author": "",
"license": "ISC",
"dependencies": {
"app-module-path": "^2.2.0",
"bootstrap": "^4.0.0-alpha.4",
"c3": "^0.4.11",
"camelcase-keys": "^4.1.0",
"ejs": "^2.5.6",
"express": "^4.15.2",
"lodash": "^4.17.2",
"moment": "^2.18.1",
"morgan": "^1.8.1",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.6.0",
"react-addons-shallow-compare": "^15.5.2",
"react-addons-transition-group": "^15.6.0",
"react-dates": "^10.1.1",
"react-dom": "^15.5.4",
"react-dropzone": "^3.13.1",
"react-helmet": "^5.0.3",
"react-redux": "^5.0.4",
"react-router": "^3.0.5",
"react-transition-group": "^1.1.3",
"react-truncate": "^2.1.4",
"reactstrap": "^3.9.5",
"redux": "^3.6.0",
"redux-form": "^6.7.0",
"redux-thunk": "^2.2.0",
"semantic-ui-css": "^2.2.10",
"semantic-ui-react": "^0.68.3",
"superagent": "^3.3.2",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-jest": "^20.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-import": "^1.1.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"css-loader": "^0.26.1",
"enzyme": "^2.8.2",
"eslint": "^3.13.0",
"eslint-plugin-destructuring": "^2.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.8.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.9.0",
"flightplan": "^0.6.16",
"fs-extra": "^3.0.1",
"jest": "^20.0.0",
"nightmare": "^2.10.0",
"prop-types": "^15.5.9",
"react-hot-loader": "^3.0.0-beta.7",
"react-test-renderer": "^15.5.4",
"redux-devtools": "^3.4.0",
"redux-devtools-dock-monitor": "^1.1.2",
"redux-devtools-log-monitor": "^1.3.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.5.1",
"webpack-bundle-analyzer": "^2.8.2",
"webpack-dev-server": "^2.4.5"
}
}