-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 919 Bytes
/
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
{
"name": "react-music",
"version": "1.0.0",
"main": "src/app.js",
"license": "MIT",
"scripts": {
"build": "webpack --config webpack.config.js",
"watch": "webpack --progress --watch",
"start": "webpack-dev-server --open",
"server": "node server"
},
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-hot-loader": "^3.0.0-beta.7",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.72.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"express": "^4.15.4",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"webpack": "^3.5.6",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^2.7.1"
}
}