-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.75 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
{
"name": "bneural-multitenant-backend",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/axios": "^0.14.0",
"@types/ejs": "^2.7.0",
"@types/express": "^4.17.0",
"@types/jasmine": "^3.4.2",
"@types/node": "^12.12.67",
"@types/node-sass": "^4.11.1",
"@types/nodemailer": "^6.4.0",
"@types/parse": "^2.18.1",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.3",
"cspell": "^4.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"flags": "^0.1.3",
"husky": "^4.3.0",
"jasmine": "^3.5.0",
"jasmine-reporters": "^2.3.2",
"jasmine-spec-reporter": "^4.2.1",
"jasmine-ts": "^0.3.0",
"mkdirp": "^0.5.5",
"ncp": "^2.0.0",
"node-flags": "^0.1.9",
"node-ssh": "^5.1.2",
"parse-server": "^4.4.0",
"parse-server-mailgun": "^2.4.15",
"ts-node": "^7.0.1",
"tslint": "^5.16.0",
"typescript": "^3.7.5"
},
"scripts": {
"start": "npm run build && npm run server",
"app": "cross-env NODE_ENV=development node build/cloud/app",
"build": "tsc --sourcemap && npm run build:scss",
"build:prod": "tsc && npm run build:scss",
"build:scss": "npx node-sass assets/templates/scss/@theme -o assets/templates/css",
"clean": "rm -r -f build/cloud",
"dashboard": "npx parse-dashboard --config config/parse-dashboard.config.json",
"debug": "cross-env NODE_ENV=development node --inspect node_modules/parse-server/bin/parse-server config/parse-server.config.js",
"lint": "npx tslint src/{,**/}*.ts --project src",
"lint:spell": "npx cspell src/**/*.ts",
"lint:spell:all": "npx cspell src/**/*.ts -c src/lib/cspell/cspell-en-es.json",
"mongo": "npx mongodb-runner stop && MONGODB_VERSION=3.6.8 npx mongodb-runner start",
"prebuild": "npm run clean",
"postinstall": "cd node_modules/parse-server && npm i",
"server": "cross-env NODE_ENV=development npx parse-server config/parse-server.config.js",
"test": "npm run mongo && npx jasmine-ts",
"test:ci": "npx jasmine-ts"
},
"dependencies": {
"axios": "^0.20.0",
"cors": "^2.8.5",
"deepmerge": "^4.2.2",
"ejs": "^2.7.4",
"module-alias": "^2.2.0",
"moment": "^2.27.0",
"node-cache": "^5.1.2",
"node-gcm": "^1.0.3",
"node-sass": "^5.0.0",
"nodemailer": "^6.4.16",
"password-generator": "^2.3.2",
"serialize-error": "^7.0.1",
"styliner": "^1.0.4",
"twilio": "^3.54.0",
"xml2js": "^0.4.23"
},
"_moduleAliases": {
"@app/env": "build/cloud/env/env",
"@lib": "build/cloud/lib",
"@modules": "build/cloud/modules",
"parse": "build/cloud/parse.server"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint"
}
}
}