forked from FAC-Sixteen/Tinkl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "Tinkl",
"version": "1.0.0",
"description": "Tinkl Tinkl little Tsar",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test tape src/tests/*.test.js | tap-spec",
"test:live": "NODE_ENV=test nodemon src/tests/*.test.js | tap-bunny",
"test:coverage": "nyc npm test",
"start": "node src/index.js",
"start:live": "nodemon src/index.js",
"db:build": "node src/model/database/db_build.js",
"lint": "./node_modules/.bin/eslint src/*.* src/**/*.js public/js/*.js",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FAC-Sixteen/Tinkl.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FAC-Sixteen/Tinkl/issues"
},
"homepage": "https://github.com/FAC-Sixteen/Tinkl#readme",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"nodemon": "^1.19.0",
"nyc": "^14.1.1",
"supertest": "^4.0.2",
"tap-bunny": "^1.0.9",
"tap-spec": "^5.0.0",
"tape": "^4.10.1"
},
"dependencies": {
"cookie": "^0.4.0",
"env2": "^2.2.2",
"express": "^4.16.4",
"express-handlebars": "^3.0.2",
"jsonwebtoken": "^8.5.1",
"pg": "^7.11.0",
"query-string": "^6.5.0",
"serve-favicon": "^2.5.0"
}
}