-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 928 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 928 Bytes
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
{
"name": "guitarapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"test": "cross-env NODE_ENV=testing jest --watchAll --verbose --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WillisLi/GuitarAPI.git"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WillisLi/GuitarAPI/issues"
},
"homepage": "https://github.com/WillisLi/GuitarAPI#readme",
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"jest": "^27.5.1",
"mongoose": "^6.1.8",
"puppeteer": "^13.1.2",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-stealth": "^2.9.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}