-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 856 Bytes
/
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
{
"name": "applied",
"version": "1.0.0",
"description": "a chrome extension to keep track of job application",
"main": "./src/app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"dev": "ts-node ./src/server.ts",
"start": "nodemon ./dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kautuk-desai/applied.git"
},
"author": "kautuk-desai",
"license": "ISC",
"bugs": {
"url": "https://github.com/kautuk-desai/applied/issues"
},
"homepage": "https://github.com/kautuk-desai/applied#readme",
"dependencies": {
"@types/express": "^4.16.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"hashids": "^1.2.2",
"mongoose": "^5.3.9",
"nodemon": "^1.18.5",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
}
}