-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.08 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "vender",
"version": "1.0.0",
"description": "Basic Vending Machine",
"scripts": {
"dev": "debug=* NODE_PATH=./src ts-node-dev --respawn ./src/index.ts",
"build": "rimraf dist && tsc",
"start": "NODE_PATH=./dist node ./dist/index.js",
"lint": "eslint --max-warnings 0 --ext .js,ts src",
"lint-prettier": "prettier --config .prettierrc --list-different '{src,test}/**/*.{ts,js,css,scss}'",
"prettier": "prettier --config .prettierrc --write './**/*.{ts,js,css,scss,json,md}'",
"test": "NODE_PATH=./src mocha --require ts-node/register 'test/integration/**/*.test.ts' --timeout 20000 --exit"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.17.2",
"helmet": "^5.0.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"sqlite": "^4.0.23",
"sqlite3": "^5.0.2",
"typeorm": "^0.2.41",
"typeorm-naming-strategies": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/helmet": "4.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.0",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.17",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"commitizen": "^4.2.4",
"dotenv": "^16.0.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-no-array-reduce": "^1.0.43",
"eslint-plugin-prettier": "^4.0.0",
"lint-staged": "^12.3.3",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"supertest": "^6.2.2",
"ts-node": "10.5.0",
"ts-node-dev": "^1.1.8",
"typescript": "4.5.5"
},
"config": {}
}