-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "pomodoro",
"version": "0.12.2",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w -ws _ ",
"clean": "bsb -clean-world",
"test": "jest --verbose",
"test:watch": "jest --watchAll",
"webpack": "webpack -w",
"webpack:production": "NODE_ENV=production webpack",
"server": "webpack-dev-server",
"postinstall": "husky install"
},
"keywords": [
"BuckleScript",
"ReasonReact",
"reason-react",
"reasonml"
],
"author": "tkovs <[email protected]> (https://github.com/tkovs)",
"license": "MIT",
"dependencies": {
"@sentry/react": "^6.1.0",
"@sentry/tracing": "^6.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"reason-react": ">=0.7.1",
"reason-uikit": "^0.5.0"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.6.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"bs-jest-dom": "^4.1.1",
"bs-platform": "^8.3.3",
"bs-react-testing-library": "^0.8.0",
"gentype": "^3.38.0",
"husky": "^5.0.0-beta.0",
"reason-hooks-testing-library": "^0.2.1",
"webpack": "4.43.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/FileMock.bs.js"
}
}
}