-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.14 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": "unqfy",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"dependencies": {
"axios": "^0.21.1",
"chai": "^4.1.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-list-endpoints": "^5.0.0",
"morgan": "^1.10.0",
"picklify": "github:lwoites/picklify",
"request": "^2.88.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.41",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"mocha": "^5.0.5",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"scripts": {
"test": "tsc && mocha ./src/test/*.js",
"eslint": "eslint . --ext .ts",
"start": "ts-node main.ts",
"build": "tsc && node dist/main.js",
"dev": "nodemon src/app.ts",
"server": "tsc && node dist/src/app.js"
},
"author": "",
"license": "ISC"
}