-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.33 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
{
"name": "mvp",
"version": "1.0.0",
"description": "MVP",
"keywords": [],
"license": "ISC",
"author": "Kyle Cordell",
"main": "index.js",
"scripts": {
"babel": "npx babel --watch src --out-dir . --presets react-app/prod",
"build-dev": "webpack -w --mode development",
"build-prod": "webpack --mode production",
"start": "node server/index.js",
"start-dev": "nodemon server/index.js",
"test": "jest --verbose",
"coverage-test": "jest --collect-coverage",
"running-test": "jest --collect-coverage --verbose --watchAll",
"lint": "eslint . --ext .js,.jsx --ignore-pattern node_modules/ --ignore-pattern __tests__/ --ignore-pattern client/dist/"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
}
},
"dependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@types/react-dom": "^17.0.7",
"axios": "^0.21.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"css-loader": "^5.0.1",
"express": "^4.17.1",
"faker": "^5.1.0",
"materialize-css": "^1.0.0-rc.2",
"moment": "^2.29.1",
"mongoose": "^5.11.11",
"nodemon": "^2.0.7",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.1.0",
"react-materialize": "^3.9.7",
"save-dev": "0.0.1-security",
"style-loader": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@shelf/jest-mongodb": "^1.2.3",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^7.0.1",
"jest": "^26.6.3",
"react-test-renderer": "^17.0.1",
"ts-loader": "^9.2.3",
"typescript": "^4.3.2",
"webpack": "^5.14.0",
"webpack-cli": "^4.3.1"
}
}