-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.77 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
61
62
63
64
65
66
67
{
"name": "brunel-exam",
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/",
"!<rootDir>/frontend/src/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"coverageReporters": [
"text"
],
"snapshotSerializers": [
"my-serializer-module"
]
},
"version": "1.0.0",
"description": "Simple app with notes for my exam",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node backend/server",
"client": "npm start --prefix frontend",
"server": "nodemon backend/server",
"dev": "concurrently \"npm run client\" \"npm run server\"",
"test": "jest",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"author": "",
"license": "ISC",
"dependencies": {
"cheerio": "^1.0.0-rc.6",
"concurrently": "^6.0.2",
"dotenv": "^8.2.0",
"env": "0.0.2",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"jest-serializer": "^26.6.2",
"mongoose": "^5.12.3",
"msw": "^0.28.1",
"nodemon": "^2.0.7",
"path": "^0.12.7",
"qs": "^6.10.1",
"react-scripts": "^4.0.3",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/react-hooks": "^5.1.1",
"enzyme": "^3.11.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0"
}
}