-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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
50
51
{
"name": "api_rest_fastify",
"version": "1.0.0",
"scripts": {
"seed": "node ./seed",
"serve": "node index.js",
"start": "cross-env NODE_PATH=. NODE_ENV=development node index.js",
"dev": "env-cmd -f ./.env nodemon --exec npm start",
"lint": "eslint \"**/*.js\"",
"format": "prettier --write \"**/*.js\"",
"test:unit": "tap test/*.test.js --no-coverage-report --jobs=1",
"precommit": "lint-staged && npm run test:unit"
},
"author": "https://github.com/NoahWTeng/",
"license": "ISC",
"dependencies": {
"change-case": "^4.1.1",
"cross-env": "^7.0.2",
"deep-parse-json": "^1.0.1",
"fastify": "^2.11.0",
"fastify-cli": "^1.3.0",
"fastify-compress": "^2.0.0",
"fastify-cors": "^3.0.1",
"fastify-helmet": "^3.0.2",
"fastify-plugin": "^1.6.1",
"fastify-swagger": "^2.5.0",
"http-status": "^1.4.2",
"mongoose": "^5.9.7",
"mongoose-paginate": "^5.0.3",
"pino-pretty": "^4.0.0",
"ramda": "^0.27.0"
},
"devDependencies": {
"chai": "^4.2.0",
"colors": "^1.4.0",
"del": "^5.1.0",
"depcheck": "0.9.2",
"env-cmd": "^10.1.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"morgan": "^1.10.0",
"prettier": "^1.19.1",
"sinon": "^8.1.1",
"supertest": "^4.0.2",
"tap": "^14.10.7"
},
"optionalDependencies": {
"lint-staged": "^10.0.7",
"nodemon": "^2.0.2"
}
}