-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "remy",
"version": "0.0.1",
"private": true,
"description": "Remy Backend API Server",
"main": "app.js",
"scripts": {
"prestart": "npm run build",
"start": "nodemon dist/app.js",
"debug": "export DEBUG=swagger-tools:middleware:* || set DEBUG=swagger-tools:middleware:*&& npm start",
"build": "tsc && npm run copy-files",
"build:w": "tsc -w && npm run copy-files",
"copy-files": "copyfiles ./config/default.yaml ./dist/ && copyfiles ./api/swagger/* ./dist/",
"test:file": "mocha -r ts-node/register -r mocha-clean",
"lint": "eslint ./dist"
},
"dependencies": {
"@google/maps": "^0.3.0",
"dotenv": "^4.0.0",
"express": "^4.12.3",
"geolib": "2.0.22",
"google-locations": "0.2.0",
"helmet": "^3.1.0",
"morgan": "^1.8.1",
"mysql": "^2.13.0",
"pug": "^2.0.0-beta11",
"swagger": "^0.7.5",
"swagger-express-mw": "0.1.0",
"swagger-tools": "^0.10.1",
"winston": "^2.3.0"
},
"devDependencies": {
"@types/chai": "^3.5.0",
"@types/express": "^4.0.35",
"@types/mocha": "^2.2.40",
"@types/mysql": "0.0.31",
"@types/node": "^7.0.10",
"@types/supertest": "^2.0.0",
"chai": "^3.5.0",
"copyfiles": "^1.2.0",
"eslint": "^3.19.0",
"mocha": "^3.2.0",
"mocha-clean": "^1.0.0",
"nodemon": "1.11.0",
"request": "^2.58.0",
"should": "^8.4.0",
"supertest": "^3.0.0",
"ts-node": "^3.0.2",
"typescript": "~2.2.2",
"z-schema": "^3.12.0"
}
}