-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "ts-boilerplate",
"version": "1.0.0",
"description": "This is the TypeScript implementation for ASAPP challenge",
"main": "lib/index.js",
"scripts": {
"build": "tsc --p tsconfig.json && npm run copy-templates",
"clean": "rimraf ./lib",
"copy-templates": "copyfiles --up 1 \"./lib\"",
"lint": "eslint ./src/**/*.ts",
"lint-fix": "eslint --fix ./src/**/*.ts",
"prebuild": "npm run lint",
"start": "npm run build && node ./lib/index.js",
"test": "mocha"
},
"dependencies": {
"body-parser": "^1.19.0",
"bcryptjs": "^2.4.3",
"dotenv": "^9.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/sqlite3": "^3.1.7",
"copyfiles": "^2.1.0",
"eslint": "^7.25.0",
"eslint-plugin-only-warn": "^1.0.2",
"mocha": "^8.4.0",
"sinon": "^10.0.0",
"typescript": "^3.2.2",
"rimraf": "^2.6.2"
},
"env": {
"mocha": true,
"node": true
},
"author": "Martin Battaglino",
"license": "ISC"
}