-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.63 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "motzi",
"private": true,
"dependencies": {
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@rails/actioncable": "^6.0.0-alpha",
"@rails/activestorage": "^6.0.0-alpha",
"@rails/ujs": "^6.0.0-alpha",
"@rails/webpacker": "5.4.3",
"@sentry/browser": "^5.7.1",
"accounting": "^0.4.1",
"ahoy.js": "^0.3.4",
"axios": "^0.21.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"lodash": "^4.17.19",
"luxon": "^1.26.0",
"moment": "^2.25.1",
"pluralize": "^8.0.0",
"prop-types": "^15.7.2",
"query-string": "^6.12.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-is": "^17.0.1",
"react-stripe-elements": "^6.0.1",
"showdown": "^1.9.1",
"styled-components": "^5.2.1"
},
"version": "0.1.0",
"devDependencies": {
"@testing-library/react-hooks": "^3.4.1",
"babel-jest": "^24.9.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"husky": "^4.2.3",
"jest": "^24.9.0",
"jest-enzyme": "^7.1.2",
"prettier": "2.0.4",
"pretty-quick": "^2.0.1",
"regenerator-runtime": "^0.13.3",
"webpack-dev-server": "^3.8.2"
},
"engines": {
"node": "16.x"
},
"scripts": {
"test": "jest",
"test-watch": "jest --watch"
},
"jest": {
"roots": [
"test/javascript"
],
"moduleDirectories": [
"node_modules",
"app/javascript/packs"
],
"setupFilesAfterEnv": [
"./node_modules/jest-enzyme/lib/index.js"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}