-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "reason-beer",
"version": "0.1.0",
"scripts": {
"build":
"bsb -make-world && webpack --config ./webpack.config.js --mode production",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "cypress run",
"test:unit": "jest",
"dev": "webpack-serve --mode development",
"host": "hs build -p 8080 --silent",
"ci":
"yarn test:unit && start-server-and-test host http://localhost:8080 test"
},
"keywords": ["BuckleScript"],
"author": "",
"license": "MIT",
"dependencies": {
"bs-axios": "^0.0.29",
"murmurhash": "^0.0.2",
"re-classnames": "^0.0.3",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"reason-react": ">=0.3.0"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.2",
"autoprefixer": "^8.1.0",
"bs-platform": "^2.2.2",
"css-loader": "^0.28.10",
"cypress": "^2.1.0",
"html-webpack-plugin": "^3.0.4",
"http-server": "^0.11.1",
"jest": "^22.4.3",
"mini-css-extract-plugin": "^0.2.0",
"postcss-loader": "^2.1.1",
"purgecss-webpack-plugin": "^0.20.1",
"start-server-and-test": "^1.1.0",
"style-loader": "^0.20.2",
"tailwindcss": "^0.4.2",
"webapp-webpack-plugin": "^1.1.2",
"webpack": "^4.1.0",
"webpack-cli": "^2.0.10",
"webpack-serve": "^0.2.0"
}
}