-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.94 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.94 KB
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
66
67
68
69
{
"name": "node-service-template",
"version": "1.1.0",
"description": "APTX4869 Studio Node.js Server Template",
"main": "index.js",
"scripts": {
"dev": "export NODE_ENV=development && nodemon src/app.ts",
"test": "export NODE_ENV=development && jest -c ./jest.config.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier src --check",
"prettier:fix": "prettier src --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/https-github-com-Dipper30/node-service-template.git"
},
"author": "Dipper30",
"license": "MIT",
"bugs": {
"url": "https://github.com/https-github-com-Dipper30/node-service-template/issues"
},
"homepage": "https://github.com/https-github-com-Dipper30/node-service-template#readme",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^16.18.24",
"@types/sequelize": "^4.28.14",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.17.3",
"nodemon": "^2.0.15",
"pre-commit": "^1.2.2",
"prettier": "^3.4.2",
"sequelize-cli": "^6.4.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.2.1",
"tslib": "^2.3.1"
},
"dependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^29.2.4",
"aptx-validator": "^3.2.0",
"aws-sdk": "^2.1271.0",
"body-parser": "^1.19.0",
"dotenv": "^12.0.4",
"dotenv-cli": "^5.0.0",
"eslint-plugin-import": "^2.27.5",
"express": "^4.18.2",
"express-fileupload": "^1.3.1",
"jest": "^29.3.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mysql": "^2.18.1",
"mysql2": "^2.3.0",
"sequelize": "^6.23.2",
"typescript": "^4.4.4",
"uuid": "^8.3.2"
},
"pre-commit": [
"lint"
],
"_moduleAliases": {
"@": "./src"
}
}