-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "pokemon-rest-api",
"version": "1.0.0",
"description": "A style guide application for SEI",
"main": "index.js",
"scripts": {
"dev": "npx nodemon server.js",
"test": "node --experimental-vm-modules --no-warnings node_modules/.bin/jest -i --verbose --watch",
"start": "node server.js",
"seed:dev": "node db/seed.js",
"seed:prod": "NODE_ENV=production node db/seed.js"
},
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"cloudinary": "^1.25.1",
"cloudinary-react": "^1.7.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.10",
"mongoose-hidden": "^1.9.1",
"mongoose-unique-validator": "^2.0.3"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"babel-eslint": "^10.1.0",
"concurrently": "^6.1.0",
"eslint": "^7.23.0",
"jest": "^26.6.0",
"supertest": "^6.1.3"
},
"jest": {
"testEnvironment": "node",
"transform": {},
"testRegex": "(/__tests__/controllers/.*|(\\.|/)(test|spec))\\.js",
"setupFilesAfterEnv": [
"<rootDir>/__tests__/helpers/setup.js"
]
}
}