-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.78 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
54
55
56
57
58
59
60
61
62
63
{
"name": "instagram-node-api",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"build-ts": "tsc",
"start": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' server.ts",
"migrate": "./node_modules/migrate/bin/migrate up --compiler=\"ts:./ts-migration_register.js\"",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch-ts": "tsc -w"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-register": "^6.26.0",
"bluebird": "^3.5.5",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.0.0",
"eventemitter2": "^5.0.1",
"express": "^4.17.0",
"express-session": "^1.16.1",
"fc": "^1.5.2",
"is-url": "^1.2.4",
"log4js": "^4.2.0",
"migrate": "^1.6.2",
"mongodb": "^3.2.6",
"mongoose": "^5.5.11",
"mongoose-sequence": "^5.0.1",
"nedb": "^1.8.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"socket.io": "^2.2.0",
"tough-cookie": "^3.0.1",
"tough-cookie-filestore2": "^1.0.0",
"ts-node": "^8.1.0",
"useragent-from-seed": "^1.0.1",
"ws": "^7.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.5",
"@types/eventemitter2": "^4.1.0",
"@types/express": "^4.16.1",
"@types/log4js": "^2.3.5",
"@types/mongoose": "^5.5.1",
"@types/nedb": "^1.8.7",
"@types/passport": "^1.0.0",
"@types/passport-local-mongoose": "^4.0.12",
"@types/socket.io": "^2.1.2",
"@types/ws": "^6.0.1",
"@types/dotenv": "^6.1.1",
"@types/node": "^12.0.0",
"@types/request-promise-native": "^1.0.16",
"nodemon": "^1.19.1",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
}
}