-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "reason-react-simple-starter",
"version": "4.0.0",
"scripts": {
"build": "npm run clean && npm-run-all build:*",
"build:webpack": "webpack -p",
"prod": "npm run clean && NODE_ENV=production npm run build:webpack -- --env=prod",
"clean": "npm-run-all --parallel clean:*",
"clean:bsb": "bsb -clean-world",
"clean:project": "rm -rf bundledOutputs .merlin",
"start": "npm-run-all --parallel start:*",
"start:webpack": "webpack-dev-server",
"test": "npm run jest",
"test:watch": "npm run clean && npm run jest -- --watchAll",
"jest": "jest"
},
"keywords": [
"BuckleScript"
],
"license": "MIT",
"devDependencies": {
"@glennsl/bs-jest": "^0.4.9",
"bs-loader": "2.0.4",
"bs-platform": "3.0.0",
"bs-react-test-renderer": "2.0.0",
"jest": "22.4.3",
"npm-run-all": "4.1.3",
"react-hot-loader": "4.1.3",
"shared-git-hooks": "1.2.1",
"webpack": "4.8.3",
"webpack-cli": "2.1.3",
"webpack-common-shake": "1.5.3",
"webpack-dev-server": "^3.8.2",
"webpack-merge": "4.1.2"
},
"dependencies": {
"@glennsl/bs-json": "1.3.2",
"bs-fetch": "0.2.1",
"bs-webapi": "0.9.1",
"moment": "2.22.1",
"react": "16.3.2",
"react-dom": "16.3.2",
"reason-react": "0.4.1"
}
}