-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 910 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
{
"name": "back4app-typescript-node",
"version": "1.0.0",
"description": "Node + Express + Back4App + Typescript",
"main": "./lib/server.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/nataliaconde/back4app-typescript-node.git"
},
"author": "Natália Condê <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nataliaconde/back4app-typescript-node/issues"
},
"scripts": {
"build": "tsc",
"dev": "ts-node ./lib/server.ts",
"start": "nodemon ./dist/server.js",
"prod": "npm run build && npm run start"
},
"homepage": "https://github.com/nataliaconde/back4app-typescript-node#readme",
"dependencies": {
"@types/express": "^4.16.1",
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"nodemon": "^1.18.10",
"parse": "^2.1.0",
"typescript": "^3.3.3333"
}
}