-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.28 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
82
{
"name": "tikket-pass",
"version": "1.0.0",
"description": "tikket-pass api server",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node server.js dist/",
"seed": "npm-run md-seed run",
"test": "mocha --recursive --exit --timeout 90000 ./test///*.js",
"test:unit": "mocha --recursive --exit --timeout 90000 ./test/unit//.js",
"test:api:debug": "mocha --recursive --exit --inspect-brk ./test/unit//.js --timeout 90000",
"coverage": "istanbul cover _mocha test///*.js -- --require babel-register",
"migration": "node database/migration.js",
"dev": "webpack -wd"
},
"repository": {
"type": "git",
"url": "https://github.com/tikketpass/api-server"
},
"author": "gomjellie",
"license": "MIT",
"dependencies": {
"aes256": "^1.0.4",
"app-root-path": "^2.2.1",
"aws-sdk": "^2.744.0",
"bcrypt": "^3.0.8",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.0",
"g": "^2.0.1",
"googleapis": "^59.0.0",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"moment-timezone": "^0.5.31",
"mongoose": "^5.10.0",
"mongoose-audit": "^1.0.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"node-http-error": "^2.0.0",
"nodemailer": "^6.4.11",
"npm-check-updates": "^3.2.2",
"npm-run": "^5.0.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"sha256": "^0.2.0",
"uuid": "^3.4.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@types/passport-local": "^1.0.33",
"babel-cli": "^6.26.0",
"babel-core": "^6.0.20",
"babel-env": "^2.4.1",
"babel-loader": "^8.1.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-regenerator-runtime": "^6.5.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^5.3.0",
"eslint-plugin-babel": "^5.3.1",
"isparta": "^4.1.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"nodemon": "^1.19.4",
"proxyquire": "^2.1.3",
"sinon": "^4.0.0",
"sinon-chai": "^3.5.0",
"sinon-chai-in-order": "^0.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}