-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
81 lines (81 loc) · 2.44 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "kamu",
"version": "3.0.0",
"engines": {
"node": "10.5.0",
"npm": "6.5.0"
},
"private": true,
"scripts": {
"build": "webpack -p",
"start": "NODE_ENV=development concurrently --raw --kill-others \"node dev-server.js\" \"python manage.py runserver 0.0.0.0:8000\"",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint --ext .jsx --ext .js ./assets",
"heroku-prebuild": "npm install --dev",
"heroku-postbuild": "npm run-script build"
},
"jest": {
"preset": "./config/jest/jest-config.json"
},
"dependencies": {
"@material-ui/codemod": "^1.1.0",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.1",
"@sentry/browser": "^4.6.6",
"babel-core": "^6.24.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.5",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.23.1",
"lodash": "^4.17.19",
"material-icons": "latest",
"moment": "^2.23.0",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-event-listener": "^0.6.5",
"react-infinite-scroller": "^1.2.4",
"react-motion": "^0.4.4",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"style-loader": "^0.13.1",
"url-parse": "^1.4.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.1",
"@testing-library/react": "^11.1.1",
"@testing-library/user-event": "^12.2.0",
"babel": "^6.3.26",
"babel-jest": "^23.6.0",
"babel-plugin-remove-attribute": "^1.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-airbnb": "2.4.0",
"babel-register": "^6.4.3",
"concurrently": "^3.6.1",
"eslint": "^7.12.1",
"eslint-config-airbnb": "18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"husky": "^1.3.1",
"jest": "^26.6.3",
"jest-environment-jsdom-sixteen": "^1.0.3",
"webpack": "^4.29.6",
"webpack-bundle-tracker": "^0.3.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}