-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "todomvc-client-reasonreact",
"version": "0.1.0",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"reformat": "refmt --in-place src/**/*.re",
"server": "webpack-dev-server",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack -w",
"webpack:production": "NODE_ENV=production webpack"
},
"husky": {
"hooks": {
"pre-commit": "npm run reformat"
}
},
"keywords": [
"BuckleScript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@glennsl/bs-json": "^4.0.0",
"bs-guid": "^1.0.1",
"page": "^1.11.4",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"reason-react": ">=0.7.0",
"todomvc-app-css": "^2.2.0"
},
"devDependencies": {
"bs-platform": "^5.0.6",
"css-loader": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.3",
"mini-css-extract-plugin": "^0.8.0",
"style-loader": "^0.23.1",
"webpack": "^4.0.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.8"
}
}