-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1009 Bytes
/
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
{
"name": "react_rest_node_express",
"version": "1.0.0",
"description": "HW4: Guess the Celebrity App (Full Stack)",
"main": "server.js",
"engines": {
"node": "16.8.0"
},
"scripts": {
"test": "jest --coverage --runInBand --forceExit",
"start": "node server.js",
"lint": "eslint . --ext .js --ignore-pattern *.test.js --ignore-pattern 'client/*' --resolve-plugins-relative-to .",
"build": "npm install && cd client && npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.1",
"express": "^4.17.1",
"knex": "^0.95.14",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"path": "^0.12.7"
},
"devDependencies": {
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"jest": "^27.3.1",
"supertest": "^6.1.6"
}
}