-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.72 KB
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
{
"name": "amadeus_server",
"version": "1.0.0",
"description": "Backend service for the Amadeus project. When Android receives and SMS, it gets posted to an endpoint. That takes care of saving it to a DB.",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run serve",
"build": "npm run build-ts && npm run tslint && npm run copy-static-assets",
"serve": "node dist/index.js",
"watch-node": "nodemon dist/index.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "jest --forceExit --coverage --verbose",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"build-sass": "node-sass src/public/css/main.scss dist/public/css/main.css",
"watch-sass": "node-sass -w src/public/css/main.scss dist/public/css/main.css",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/nicholasjativa/Amadeus_Server.git"
},
"dependencies": {
"@slack/client": "^3.9.0",
"@types/express": "^4.11.0",
"@types/express-session": "^1.15.8",
"@types/mysql": "^2.15.2",
"body-parser": "~1.17.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.3",
"ejs": "^2.5.7",
"errorhandler": "^1.5.0",
"express": "~4.15.2",
"express-session": "^1.15.2",
"firebase-admin": "^5.3.0",
"grant-express": "^3.7.2",
"jade": "~1.11.0",
"morgan": "^1.8.2",
"mysql": "^2.14.1",
"node-sass": "^4.7.2",
"nodemon": "^1.14.7",
"path": "^0.12.7",
"serve-favicon": "~2.4.2",
"shelljs": "^0.7.8",
"socket.io": "^2.0.4",
"ts-node": "^4.1.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2",
"winston": "^3.1.0"
},
"author": "Nicholas Daniel Jativa",
"license": "ISC",
"bugs": {
"url": "https://github.com/nicholasjativa/Amadeus_Server/issues"
},
"homepage": "https://github.com/nicholasjativa/Amadeus_Server#readme",
"devDependencies": {
"@types/express": "^4.11.0",
"@types/mysql": "^2.15.2",
"@types/socket.io": "^1.4.31",
"@types/ws": "^3.2.1",
"concurrently": "^3.5.1",
"crypto": "^1.0.1",
"errorhandler": "^1.5.0",
"node-sass": "^4.7.2",
"nodemon": "^1.14.7",
"shelljs": "^0.7.8",
"socket.io": "^2.0.4",
"ts-node": "^4.1.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
}
}