-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.35 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.35 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "",
"private": true,
"version": "0.0.0",
"description": "",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"init": "./commands/init",
"update": "./commands/update",
"preinstall": "npm cache clean",
"precommit": "npm test",
"test": "./commands/test",
"start": "./commands/start"
},
"dependencies": {
"babel-core": "^5.8.25",
"bound-native-methods": "^0.1.6",
"isomorphic-fetch": "^2.1.1",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"classnames": "^2.1.5",
"redux": "^3.0.2",
"redux-actions": "^0.8.0",
"redux-thunk": "^1.0.0",
"redux-promise": "^0.5.0",
"react-redux": "^3.1.0",
"normalize.css": "^3.0.3"
},
"devDependencies": {
"webpack": "^1.12.2",
"babel-runtime": "^5.8.25",
"babel-loader": "^5.3.2",
"express": "^4.13.3",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1",
"babel-plugin-react-transform": "^1.1.1",
"react-transform-hmr": "^1.0.1",
"react-transform-catch-errors": "^1.0.0",
"redbox-react": "^1.1.1",
"redux-devtools": "^2.1.5",
"redux-logger": "^2.0.3",
"husky": "^0.10.1"
},
"engines": {
"node": ">=4.1.0"
},
"babel": {
"stage": 0,
"loose": "all",
"experimental": true,
"optional": [
"runtime",
"minification.constantFolding"
],
"plugins": [
"react-transform"
],
"extra": {
"react-transform": {
"transforms": [{
"transform": "react-transform-hmr",
"imports": ["react"],
"locals": ["module"]
}, {
"transform": "react-transform-catch-errors",
"imports": ["react", "redbox-react"]
}]
}
}
},
"semistandard": {
"parser": "babel-eslint"
},
"#comments": {
"scripts": {
"init": ["", "$ npm run init"],
"update": ["", "$ npm run update"],
"test": ["", "$ npm test"],
"start": ["", "$ npm start"]
},
"dependencies": {
"babel-core": ["ECMAScript 2015+", "babel-core/polyfill"],
"react": ["React"],
"redux": ["Redux"],
"normalize.css": ["CSS"]
},
"devDependencies": {
"webpack": ["Webpack"],
"express": ["Development Server"],
"babel-plugin-react-transform": ["Hot Reload"],
"redux-devtools": ["DevTools"],
"husky": ["Git Hooks"]
}
}
}