forked from incredibles-fec/fec
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.87 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.87 KB
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
{
"name": "fec-incredibles",
"version": "1.0.0",
"main": "server/index.js",
"scripts": {
"server-dev": "npx nodemon --watch server server/index.js",
"client-dev": "npx webpack --watch",
"build": "npx webpack",
"start": "node server/index.js",
"(UNSUPPORTED BY DEFAULT; see webpack.config.js for more info) client-dev:hot": "npx webpack serve --hot --open",
"test": "jest --env=jsdom --coverage"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"@testing-library/react": "^12.1.5",
"axios": "^0.21.1",
"babel-jest": "^29.4.1",
"bluebird": "^3.7.2",
"cors": "^2.8.5",
"date-fns": "^2.22.1",
"dotenv": "^10.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-jest": "^27.2.1",
"express": "^4.17.1",
"intersection-observer": "^0.12.2",
"jest-environment-jsdom": "^29.4.1",
"morgan": "^1.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.5",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.5",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.12.0",
"css-loader": "^5.2.6",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^29.4.1",
"live-server": "^1.2.1",
"nodemon": "^2.0.7",
"react-refresh": "^0.14.0",
"style-loader": "^3.1.0",
"webpack": "^5.41.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.8.0"
}
}