-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.51 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "tokuten-server",
"version": "0.1.0",
"scripts": {
"build": "tsc",
"db-migrate": "node_modules/db-migrate/bin/db-migrate up",
"db-rollback": "node_modules/db-migrate/bin/db-migrate down",
"db-reset": "node_modules/db-migrate/bin/db-migrate reset",
"dev": "ts-node-dev --require dotenv/config src/server.ts",
"test": "nyc mocha -r ts-node/register -r dotenv/config --recursive ./test/*.test.ts --reporter mochawesome --reporter nyan",
"heroku-postbuild": "npm run build && npm run db-migrate",
"serve": "node -r dotenv/config build/src/server.js",
"start": "npm run serve"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"lcov"
],
"all": true
},
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/connect-pg-simple": "^4.2.0",
"@types/express-jwt": "0.0.41",
"@types/express-session": "^1.15.11",
"@types/passport": "^1.0.0",
"@types/passport-local": "^1.0.33",
"body-parser": "^1.18.3",
"connect-pg-simple": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"eslint": "^5.6.1",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"express-session": "^1.15.6",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.5.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@types/chai": "^4.1.6",
"@types/chai-http": "^3.0.5",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/pg": "^7.4.11",
"@typescript-eslint/parser": "^1.1.0",
"async": "^2.6.1",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"db-migrate": "^0.11.3",
"db-migrate-pg": "^0.4.0",
"deep-equal-in-any-order": "^1.0.10",
"mocha": "^5.2.0",
"mochawesome": "^3.0.3",
"nyc": "^13.0.1",
"passport-stub": "^1.1.1",
"ts-node": "^7.0.1",
"ts-node-dev": "^1.0.0-pre.30",
"typescript": "^3.1.1"
}
}