-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.64 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
52
53
{
"name": "sakura",
"description": "Project Sakura, session api module",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "gulp scripts",
"start": "node dist/bin/run.js",
"watch": "gulp watch",
"dev": "nodemon --inspect dist/bin/run.js",
"test": "mocha --report spec --require ts-node/register \"src/tests/*.test.ts\"",
"heroku-postbuild": "npm install --dev && gulp scripts"
},
"dependencies": {
"alipay-ftof": "^0.1.5",
"async-file": "^2.0.2",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"co-router": "^1.0.5",
"config": "^1.28.1",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"express": "^4.16.2",
"ioredis": "^3.2.1",
"mocha": "^4.0.1",
"mongoose": "^4.13.1",
"mongoose-unique-validator": "^1.0.6",
"morgan": "^1.9.0",
"nanoid": "^1.0.1",
"urlsafe-base64": "^1.0.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/bcrypt": "^1.0.0",
"@types/body-parser": "^1.16.8",
"@types/config": "^0.0.33",
"@types/cookie-parser": "^1.4.1",
"@types/debug": "^0.0.30",
"@types/express": "^4.0.39",
"@types/ioredis": "^0.0.27",
"@types/mocha": "^2.2.44",
"@types/mongoose": "^4.7.25",
"@types/morgan": "^1.7.35",
"@types/node": "^8.0.50",
"@types/uuid": "^3.4.3",
"eslint": "^4.10.0",
"gulp": "^3.9.1",
"gulp-typescript": "^3.2.3",
"nodemon": "^1.12.1",
"ts-node": "^3.3.0",
"typescript": "^2.6.1"
}
}