-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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": "e_learning_system",
"private": true,
"dependencies": {
"@babel/preset-react": "^7.10.4",
"@rails/webpacker": "4.3.0",
"axios": "^0.20.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bootstrap": "^4.5.2",
"camelcase-keys": "^6.2.2",
"i18n-js": "^3.7.1",
"jquery": "^3.5.1",
"popper.js": "^1.16.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-minimal-pie-chart": "^8.0.1",
"react-modal": "^3.11.2",
"react-paginate": "^6.5.0",
"throttle-debounce": "^2.3.0",
"url-template": "^2.0.8",
"webpacker-react": "^0.3.2"
},
"version": "0.1.0",
"devDependencies": {
"axios-mock-adapter": "^1.18.2",
"babel-eslint": "^10.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.2",
"jest": "^26.4.2",
"jest-junit": "^12.0.0",
"prettier": "^2.1.2",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"test": "TZ=UTC jest",
"test:watch": "TZ=UTC jest --watch",
"test:ci": "yarn test --ci --testResultsProcessor jest-junit --runInBand",
"lint": "eslint --ext .js,.jsx app",
"fix:lint": "eslint --ext .js,.jsx app --fix",
"fix:prettier": "prettier --write \"app/javascript/components/**/*.*\""
},
"engines": {
"node": ">=10"
}
}