-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1005 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
35
36
{
"name": "revergreen",
"version": "0.1.0",
"scripts": {
"build:reason": "bsb -make-world",
"build:webpack": "NODE_ENV=production webpack",
"build": "concurrently 'yarn build:reason' 'yarn build:webpack'",
"clean": "bsb -clean-world",
"start": "concurrently 'yarn start:reason' 'yarn start:webpack' webpack-dev-server",
"start:reason": "bsb -make-world -w",
"start:webpack": "webpack -w"
},
"keywords": [
"BuckleScript"
],
"author": "An Cao <[email protected]>",
"license": "MIT",
"dependencies": {
"@glennsl/bs-json": "5.0.1",
"@minima.app/re-css": "1.0.0",
"bs-fetch": "0.5.0",
"evergreen-ui": "^4.2.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"reason-react": "0.7.0"
},
"devDependencies": {
"bs-platform": "7.0.1",
"concurrently": "5.0.1",
"html-webpack-plugin": "^3.2.0",
"pnp-webpack-plugin": "^1.2.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
}
}