forked from gamliela/starter-react-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 933 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
{
"name": "starter-react-mobx-css-modules",
"version": "1.0.0",
"main": "src/index.jsx",
"repository": "https://github.com/gamliela/starter-react-mobx-css-modules.git",
"author": "gamliela <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"mobx": "^3.2.1",
"mobx-react": "^4.2.2",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"@types/react": "^15.6.0",
"@types/react-dom": "^15.5.1",
"css-loader": "^0.28.4",
"html-webpack-plugin": "^2.29.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"ts-loader": "^2.3.2",
"typescript": "^2.4.2",
"url-loader": "^0.5.9",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.6.1"
},
"scripts": {
"build": "webpack --config config/webpack.config.js",
"dev-server": "webpack-dev-server --config config/webpack.config.js --inline --open"
}
}