-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
executable file
·127 lines (127 loc) · 3.51 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "cmpd-explorers-christmas",
"version": "2017.1.0",
"private": true,
"scripts": {
"start": "lerna run start --parallel",
"start-client": "lerna run start --parallel --scope cmpd-fe-*-app",
"build-client": "lerna run build --parallel --scope cmpd-fe-*-app",
"start-server": "lerna run start --parallel --scope *-api",
"build-server": "lerna run build --parallel --scope *-api",
"watch-server": "lerna run watch --parallel --scope *-api",
"seed": "rimraf run/db.development.sqlite && lerna run seed --stream",
"prepack": "npm run build-client && npm run build-server",
"lint": "eslint -f unix --fix --ext js --ext jsx server src env.js env.example.js",
"bootstrap": "lerna bootstrap",
"test": "lerna run test",
"jest": "jest --config=jest.json",
"dist:watch": "lerna run --parallel dist:watch",
"clean": "lerna clean --yes && rimraf frontend/**/dist backend/**/dist && yarn bootstrap",
"reset": "yarn clean"
},
"cacheDirectories": [
"node_modules",
"packages/cmpd-fe-nomiantions/node_modules"
],
"engines": {
"node": ">=8.9.x"
},
"files": [
"build",
"server-notypes"
],
"devDependencies": {
"@types/exceljs": "^0.5.2",
"@types/express": "^4.0.39",
"@types/jest": "^22.1.2",
"@types/pino": "^4.7.1",
"@types/sequelize": "^4.0.79",
"cross-env": "^5.0.5",
"debug": "~2.6.3",
"faker": "^4.1.0",
"husky": "^0.14.3",
"jasmine": "^2.6.0",
"jest": "^23.2.0",
"lerna": "^2.8.0",
"nodemon": "^1.14.12",
"npm-run-all": "^4.1.2",
"parcel-bundler": "^1.6.1",
"prettier": "1.10.2",
"pretty-quick": "^1.4.1",
"quoted-printable": "^1.0.1",
"rimraf": "^2.6.2",
"sqlite3": "^3.1.13",
"supertest": "^3.0.0",
"ts-jest": "^22.0.4",
"ts-node": "^4.1.0",
"tslint": "^5.8.0",
"typescript": "^3.0.1"
},
"dependencies": {
"@google/maps": "^0.4.3",
"@types/bcrypt-nodejs": "^0.0.30",
"@types/formidable": "^1.0.29",
"@types/fs-extra": "^5.0.0",
"@types/multer": "^1.3.6",
"admin-lte": "^2.3.11",
"aws-sdk": "^2.133.0",
"axios": "^0.16.2",
"babel": "^6.23.0",
"babel-eslint": "^7.2.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.2",
"bootstrap": "^3.3.7",
"class-validator": "^0.8.1",
"compression": "^1.6.2",
"date-fns": "^1.29.0",
"eslint": "^3.19.0",
"eslint-plugin-dependencies": "^2.4.0",
"eslint-plugin-html": "^2.0.1",
"exceljs": "^0.5.1",
"express": "~4.15.2",
"express-jwt": "^5.3.0",
"express-validator": "^4.2.1",
"font-awesome": "^4.7.0",
"formidable": "^1.1.1",
"fs-extra": "^5.0.0",
"fuse.js": "^3.2.0",
"jsonwebtoken": "^7.4.1",
"jwt-decode": "^2.2.0",
"moment": "^2.18.1",
"multer": "^1.3.0",
"mustache": "^2.3.0",
"mysql2": "^1.4.2",
"nodemailer": "^4.0.1",
"nodemailer-ses-transport": "^1.5.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pino": "^4.7.2",
"querystring": "^0.2.0",
"ramda": "^0.25.0",
"reflect-metadata": "0.1.10",
"sequelize": "^4.23.2",
"sequelize-encrypted": "^1.0.0",
"typeorm": "^0.1.8",
"typeorm-encrypted": "^0.5.0"
},
"workspaces": {
"packages": [
"frontend/**/*",
"backend/*"
],
"nohoist": [
"**/typescript*",
"**/jest*",
"**/ts-*",
"**/tslint*"
]
},
"proxy": {
"/api": {
"target": "http://localhost:3001",
"ws": true
}
}
}