-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.31 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
45
46
47
48
49
50
51
{
"name": "digit-scanner",
"version": "1.0.0",
"description": "",
"scripts": {
"clean": "rimraf build/*",
"copy-assets": "ts-node tools/copyAssets",
"build-ts": "tsc",
"parcel": "parcel build src/public/js/*.ts --dist-dir build/public/js",
"pre:build": "tsoa spec",
"build": "npm run clean && npm run build-ts && npm run copy-assets && npm run parcel",
"dev": "npm run build && npm run start",
"start:dev": "nodemon --watch src -e ts,ejs,css --exec npm run dev",
"start": "node -r dotenv/config build/index.js"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"engines": {
"node": "16.13.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"fabric": "^4.6.0",
"jimp": "^0.16.1",
"morgan": "^1.10.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.1.6",
"tsoa": "^3.14.0",
"typeorm": "^0.2.39"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/fabric": "^4.5.4",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.7",
"@types/shelljs": "^0.8.9",
"@types/swagger-ui-express": "^4.1.3",
"nodemon": "^2.0.15",
"parcel": "^2.0.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"ts-node": "^10.4.0",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.4"
}
}