-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "preguntas",
"version": "1.0.0",
"description": "App for making questions in random order",
"main": "dist/App.js",
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"watch:build": "tsc --watch",
"watch:app": "nodemon './dist/App.js' --watch './dist'",
"app": "node './dist/App.js'",
"start": "npm-run-all clean build watch:app --print-label"
},
"author": "Franco Frizzo",
"license": "ISC",
"dependencies": {
"@types/http-codes": "^1.0.1",
"@types/qs": "^6.9.2",
"body-parser": "^1.19.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"nodemon": "^1.18.7",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.2",
"sqlite": "^2.9.3",
"typescript": "^2.9.2"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.17.6",
"@types/express-serve-static-core": "^4.17.7",
"@types/http-errors": "^1.6.3",
"@types/mime": "^2.0.1",
"@types/node": "^14.0.1"
},
"repository": {
"type": "git",
"url": "http://www.github.com/francofrizzo/preguntas.git"
},
"engines": {
"node": "8"
},
"keywords": []
}