-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 935 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
34
{
"name": "practice-vim",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "concurrently \"npm run js-watch\" \"npm run bs-watch\" \"node-sass -w src/main.scss -o build\"",
"js-watch": "webpack-dev-server --hot --inline",
"bs-watch": "bsb -make-world -w"
},
"dependencies": {
"bs-css": "^7.2.0",
"bs-webapi": "^0.13.0",
"normalize.css": "^8.0.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"reason-react": "^0.5.3"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"bs-platform": "^4.0.5",
"concurrently": "^4.0.1",
"css-loader": "^1.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
}
}