-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.6 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
{
"name": "music_analysis",
"version": "0.0.1",
"description": "A music analysis application for self",
"main": "index.js",
"scripts": {
"start": "nodemon server/app.js --exec babel-node",
"build": "babel server -d dist",
"server": "node dist/app.js",
"test": "mocha --compilers js:babel-register"
},
"keywords": [
"music",
"analysis"
],
"author": "charles_moone",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"inert": "^4.2.0",
"mocha": "^3.4.1",
"nodemon": "^1.11.0",
"webpack": "^2.5.1"
},
"dependencies": {
"antd": "^2.10.4",
"babel-plugin-import": "^1.2.1",
"classnames": "^2.2.5",
"css-loader": "^0.28.4",
"echarts": "^3.5.4",
"good": "^7.1.0",
"good-console": "^6.4.0",
"good-squeeze": "^5.0.2",
"hapi": "^16.1.1",
"jsx-loader": "^0.13.2",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-router": "^3.0.1",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"style-loader": "^0.18.2"
}
}