-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 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
{
"name": "server-example",
"version": "2.0.0",
"description": "Server example",
"main": "server/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/index.js",
"build:server": "cd server.src && tsc",
"watch:server": "cd server.src && tsc -w",
"postinstall": "npm run build:server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itmo-avol/server-example.git"
},
"keywords": [
"example",
"express",
"typescript"
],
"author": "Andrey Volynkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/itmo-avol/server-example/issues"
},
"homepage": "https://github.com/itmo-avol/server-example#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"@types/express-handlebars": "^3.1.0",
"@types/node": "^14.14.35",
"typescript": "^4.2.3"
}
}