-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "remember-me-backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"unit": "tap test/**/*.test.js",
"test": "npm run lint && npm run unit",
"start": "node src/server.js",
"start:dev": "nodemon src/server.js",
"lint": "eslint . --cache --ignore-pattern .gitignore",
"lint-fix": "eslint . --cache --fix --ignore-pattern .gitignore"
},
"keywords": [],
"type": "module",
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^8.0.0",
"fastify": "^2.14.1",
"fastify-helmet": "^3.0.2",
"fastify-plugin": "^1.6.1",
"fastify-swagger": "^2.5.1",
"knex": "^0.21.1",
"pg": "^8.2.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^1.19.1",
"simple-get": "^3.0.3",
"standard": "^12.0.1",
"tap": "^14.6.9"
}
}