-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "reatris",
"description": "Simple implementation of classic tetris game using Reason and ReasonReact",
"private": true,
"homepage": "https://github.com/denis-ok/reasonml-reatris",
"version": "0.4.0",
"scripts": {
"reason-clean": "bsb -clean-world",
"reason-build": "bsb -make-world",
"reason-develop": "bsb -make-world -w",
"develop": "npm run reason-clean && concurrently --names 'wp,bs' -c 'bgBlue.bold,bgGreen.bold' 'npm run webpack-dev-server' 'npm run reason-develop'",
"start": "npm run develop",
"webpack": "webpack",
"webpack-dev-server": "webpack-dev-server --open --hot",
"jest": "jest"
},
"keywords": [
"BuckleScript"
],
"author": "Denis Strelkov",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@glennsl/bs-jest": "^0.5.1",
"bs-platform": "^7.3.2",
"bs-react-testing-library": "^0.7.2",
"bs-webapi": "^0.15.9",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.2.0",
"css-loader": "^3.5.3",
"html-webpack-plugin": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"bs-bastet": "^1.2.5",
"normalize.css": "^8.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"reason-react": "^0.8.0",
"relude": "^0.63.1",
"relude-reason-react": "^0.10.0"
}
}