-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 866 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 866 Bytes
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
{
"name": "hackoss-api",
"version": "0.0.0",
"scripts": {
"lint": "tslint --project tsconfig.json",
"clean": "rm -rf dist && mkdir dist",
"build": "npm run lint && npm run clean && tsc",
"postinstall": "npm run build",
"start": "npm run build && node -r dotenv/config dist/app.js",
"deploy": "git push heroku master"
},
"dependencies": {
"@types/request-promise": "^4.1.42",
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"eventbrite": "^1.0.4",
"express": "^4.16.4",
"form-data": "^2.3.3",
"hackoss": "0.4.1",
"lodash": "^4.17.11",
"request": "^2.88.0"
},
"devDependencies": {
"@types/request": "^2.48.1",
"@types/lodash": "^4.14.120",
"@types/express": "^4.16.0",
"@types/node": "~10.12.18",
"typescript": "~3.2.4",
"ts-node": "~7.0.1",
"tslint": "~5.12.1"
}
}