-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
89 lines (89 loc) · 2.6 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
{
"name": "aionic-core",
"version": "0.0.1",
"description": "The core API required for all other Aionic applications",
"main": "./dist/index.js",
"author": "Lars Wächter <[email protected]>",
"private": true,
"repository": "https://github.com/aionic-org/aionic-core",
"license": "MIT",
"homepage": "https://aionic.org",
"scripts": {
"start": "node ./dist/index.js",
"build": "rm -rf dist && tsc -p tsconfig.json && gulp copy && gulp merge",
"watch": "nodemon --exec \"npm run build && npm run start\" --watch src --ext ts",
"watch-dirty": "nodemon --exec \"tsc -p tsconfig.json && npm run start\" --watch src --ext ts",
"test": "npm run build && mocha",
"seed": "node db/index.js",
"lint": "tslint -p tsconfig.json",
"prettier": "prettier --config ./.prettierrc --write src/**/*.ts",
"docs": "typedoc --mode file --out docs --readme README.md --module commonjs"
},
"_moduleAliases": {
"@global": "dist/api/components/global",
"@milestone": "dist/api/components/milestone",
"@config": "dist/config",
"@services": "dist/services"
},
"devDependencies": {
"@types/acl": "^0.4.37",
"@types/bcrypt-nodejs": "0.0.30",
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.2.8",
"@types/compression": "^1.0.1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/ejs": "^3.0.0",
"@types/express": "^4.17.2",
"@types/helmet": "0.0.45",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"@types/nodemailer": "^6.4.0",
"@types/passport": "^1.0.2",
"@types/passport-http": "^0.3.8",
"@types/passport-jwt": "^3.0.3",
"@types/supertest": "^2.0.8",
"@types/uuid": "^3.4.7",
"@types/validator": "^12.0.1",
"chai": "^4.2.0",
"gulp": "^4.0.2",
"gulp-merge-json": "^1.3.1",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.16",
"sql.js": "^1.1.0",
"supertest": "^4.0.2",
"tslint": "^6.0.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.16.9",
"typescript": "^3.7.5"
},
"dependencies": {
"acl": "^0.4.11",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"decko": "^1.2.0",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mysql": "^2.18.1",
"node-cache": "^5.1.0",
"nodemailer": "^6.4.2",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0",
"typeorm": "^0.2.22",
"uuid": "^3.4.0",
"validator": "^12.2.0",
"winston": "^3.2.1"
}
}