-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.5 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
{
"name": "full-api-node",
"version": "0.1.0",
"description": "full api con node js",
"main": "src/index.js",
"scripts": {
"service": "nodemon -r dotenv/config src/index.js",
"express": "nodemon -r dotenv/config src/expressExample/index.js",
"start": "node src/expressExample/index.js",
"http": "nodemon -r dotenv/config src/httpExample/index.js",
"lint": "npx eslint --fix ./src/expressExample",
"test:ci": "NODE_ENV=ci jest --ci -i",
"test:unit:ci": "NODE_ENV=ci jest --ci -i --testPathPattern=test/unit",
"test:e2e:ci": "NODE_ENV=ci jest -i --testPathPattern=test/e2e",
"test:unit:local": "jest -i --testPathPattern=test/unit",
"test:e2e:local": "jest -i --testPathPattern=test/e2e"
},
"author": "1001-caleb",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@types/axios": "^0.14.0",
"@types/jest": "^29.0.0",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"eslint": "^8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.2",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"jest": "^29.0.2",
"nodemon": "^2.0.19"
},
"dependencies": {
"@sinclair/typebox": "^0.24.28",
"@types/jsonwebtoken": "^8.5.9",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"express": "^4.18.1",
"http-errors": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.2",
"morgan": "^1.10.0",
"nanoid": "^3.0.0"
}
}