-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "little-tags-server",
"version": "1.0.0",
"description": "mock server of fakestore api",
"main": "server.js",
"scripts": {
"start": "node server",
"server": "env-cmd -f ./config/dev.env nodemon server",
"dev": "env-cmd -f ./config/dev.env nodemon",
"test": "env-cmd -f ./config/test.env jest --watch"
},
"jest": {
"testEmvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pesto-students/little-tags-server.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-session": "^1.17.1",
"express-validator": "^6.3.1",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.8.9"
},
"devDependencies": {
"env-cmd": "10.1.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.2.1",
"gcp-metadata": "^4.1.0",
"google-auth-library": "^7.0.0"
},
"bugs": {
"url": "https://github.com/pesto-students/little-tags-server/issues"
},
"homepage": "https://github.com/pesto-students/little-tags-server#readme"
}