-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "react-profile",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"js": "webpack",
"build": "NODE_ENV=production webpack -p --config webpack.prod.config.js",
"start": "node server.js"
},
"author": "Patrick Huang",
"license": "BSD",
"devDependencies": {
"babel-core": "^4.3.0",
"babel-loader": "^4.0.0",
"jsx-loader": "^0.12.2",
"react-hot-loader": "^1.1.1",
"webpack": "^1.5.3",
"webpack-dev-server": "^1.7.0",
"jest-cli": "~0.4.0",
"react-tools": "~0.13.0"
},
"dependencies": {
"lodash": "^3.2.0",
"moment": "^2.9.0",
"moment-range": "^1.0.6",
"react": "^0.12.2",
"react-chartjs": "^0.4.0",
"superagent": "~0.21.0",
"flux": "~2.0.1",
"object-assign": "~2.0.0",
"events": "~1.0.2",
"es6-promise": "~2.0.1",
"keymirror": "~0.1.1",
"chart.js": "git://github.com/huangp/Chart.js"
},
"jest": {
"unmockedModulePathPatterns": [
"./node_modules/react",
"./node_modules/object-assign",
"./node_modules/es6-promise",
"./node_modules/events",
"./lib"
],
"scriptPreprocessor": "./preprocessor.js"
}
}