-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
49
50
51
52
{
"name": "setml",
"private": true,
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "jest",
"webpack": "webpack -w",
"webpack:production": "NODE_ENV=production webpack"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.1.2",
"@glennsl/bs-jest": "^0.4.4",
"@glennsl/bs-json": "~3.0.0",
"@jsiebern/bs-material-ui": "^0.4.2",
"@material-ui/core": "~3.2.0",
"@material-ui/icons": "~3.0.0",
"ajv": "^6.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"bs-fetch": "^0.3.1",
"bs-platform": "~4.0.5",
"bs-webapi": "^0.10.0",
"bs-websockets": "github:keynan/bs-websockets#0cee6d3291c8844c5b72bfdad159099fe98b54b2",
"compression-webpack-plugin": "^2.0.0",
"concurrently": "^3.6.1",
"jest": "^23.6.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"reason-react": "^0.5.3",
"regenerator-runtime": "^0.11.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-manifest-plugin": "^2.0.4",
"merge": ">=1.2.1"
},
"devDependencies": {},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(bs-platform)/)"
]
}
}