-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 769 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 769 Bytes
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
{
"name": "reasonml_examples",
"scripts": {
"start": "webpack -w",
"build": "bsb -make-world -w",
"build-no-third-part": "bsb -make -w",
"clean": "bsb -clean-world",
"clean-no-third-part": "bsb -clean",
"test": "bsb -make-world && ./node_modules/jest/bin/jest.js"
},
"dependencies": {
"react": "16.6.3",
"react-dom": "16.6.3",
"reason-react": "0.5.3"
},
"devDependencies": {
"@babel/core": "7.1.6",
"@babel/preset-env": "7.1.6",
"@babel/preset-react": "7.0.0",
"@glennsl/bs-json": "3.0.0",
"babel-loader": "8.0.4",
"bs-fetch": "0.3.1",
"bs-jest": "0.3.2",
"bs-loader": "2.0.7",
"bs-platform": "4.0.7",
"express": "4.16.4",
"webpack": "4.26.1",
"webpack-cli": "3.1.2"
}
}