-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 2.97 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "dcap-node",
"version": "0.1.0",
"description": "Convenient REST API for managing optionally encrypted decentralized documents hosted on IPFS",
"repository": {
"type": "git",
"url": "https://github.com/mcrider/dcap-node.git"
},
"author": "Matthew Crider",
"license": "MIT",
"scripts": {
"start": "npm run build && npm run watch",
"build": "npm run build-ts && npm run tslint",
"serve": "nodemon dist/server.js --watch src -e ts,js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve\"",
"test": "jest",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"jest": {
"globals": {
"__TS_CONFIG__": "tsconfig.json"
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
],
"testEnvironment": "node"
},
"dependencies": {
"ajv": "^5.5.1",
"async": "^2.1.2",
"bcrypt": "^1.0.3",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"cors": "^2.8.4",
"dotenv": "^2.0.0",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"express-flash": "^0.0.2",
"express-session": "^1.14.2",
"express-validator": "^3.1.3",
"go-ipfs-dep": "^0.4.13",
"ipfs": "^0.27.7",
"ipfsd-ctl": "^0.27.1",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.4",
"lusca": "^1.4.1",
"mongoose": "^5.0.0-rc0",
"morgan": "^1.7.0",
"openpgp": "^2.6.1",
"request": "^2.78.0"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/async": "^2.0.40",
"@types/bcrypt": "^1.0.0",
"@types/bcrypt-nodejs": "0.0.30",
"@types/body-parser": "^1.16.2",
"@types/compression": "0.0.33",
"@types/cors": "^2.8.3",
"@types/dotenv": "^2.0.20",
"@types/errorhandler": "0.0.30",
"@types/express": "^4.0.35",
"@types/express-session": "0.0.32",
"@types/jest": "^19.2.2",
"@types/jquery": "^2.0.41",
"@types/jsonwebtoken": "^7.2.5",
"@types/lodash": "^4.14.63",
"@types/mongoose": "^4.7.31",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.12",
"@types/nodemailer": "^1.3.32",
"@types/passport": "^0.3.3",
"@types/passport-facebook": "^2.1.3",
"@types/request": "0.0.45",
"@types/supertest": "^2.0.0",
"concurrently": "^3.4.0",
"frisby": "^2.0.11",
"jest": "^19.0.2",
"nodemon": "^1.11.0",
"shelljs": "^0.7.7",
"supertest": "^2.0.1",
"ts-jest": "^19.0.8",
"tslint": "^5.0.0",
"typescript": "^2.4.0"
}
}