-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "reason-react-ssr-mui",
"version": "1.0.0",
"keywords": [
"BuckleScript",
"ReasonReact",
"Reason",
"ReasonML",
"Material UI",
"SSR"
],
"author": "hpierre74",
"license": "MIT",
"resolutions": {
"set-value": "2.0.1"
},
"dependencies": {
"@jsiebern/bs-material-ui": "^1.2.0",
"@material-ui/core": "^4.8.3",
"bs-express": "^1.0.0",
"express": "^4.17.1",
"ignore-styles": "^5.0.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"reason-react": "^0.7.0"
},
"devDependencies": {
"@jsiebern/bs-material-ui-ppx": "*",
"bs-platform": "^7.0.1",
"bsb-js": "^1.1.7",
"concurrently": "^5.0.2",
"css-loader": "^3.4.2",
"husky": "^4.0.9",
"nodemon": "^2.0.2",
"rimraf": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"husky": {
"hooks": {
"pre-push": "exit 0"
}
},
"scripts": {
"build:prod": "bsb -make-world && webpack --mode=production",
"build:dev": "bsb -make-world && webpack --mode=development",
"start": "bsb -make-world -w",
"clean": "concurrently \"yarn clean:bsb\" \"yarn clean:dist\"",
"clean:bsb": "bsb -clean-world; rm -rf .cache",
"clean:dist": "./node_modules/rimraf/bin.js dist",
"server": "node src/server.bs.js",
"server:watch": "concurrently \"./node_modules/nodemon/bin/nodemon.js src/server.bs.js\" \"webpack --mode=development --watch\"",
"dev": "yarn clean && yarn build:dev && concurrently \"yarn start\" \"yarn server:watch\"",
"test": "echo \"No test script defined\" && exit 0"
}
}