-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.31 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
53
{
"name": "reason-react",
"version": "0.1.0",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w -ws _ ",
"clean": "bsb -clean-world",
"server": "parcel ./public/index.html",
"test": "bsb -make-world && jest"
},
"keywords": [
"BuckleScript",
"ReasonReact",
"reason-react"
],
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
},
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/lib/js/src/**/**.bs.js",
"!**/__tests__/**/*.test.(bs.js|.js|.re)"
],
"coverageReporters": [
"text",
"lcov"
],
"testMatch": [
"<rootDir>/lib/js/__tests__/**/*.bs.js"
]
},
"author": "",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.9.11",
"@material-ui/icons": "^4.9.1",
"@mscharley/bs-material-ui-icons": "^1.0.2",
"@types/react": "^16.8.6",
"bs-css": "^12.2.0",
"bs-css-emotion": "^1.2.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"reason-react": ">=0.7.0"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.5.1",
"bs-platform": "^7.2.2",
"bs-react-testing-library": "^0.7.2",
"jest": "^26.0.1",
"parcel-bundler": "^1.12.4"
}
}