-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.39 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "creator777-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production && npx webpack --config webpack.config.js && ts-node src/scripts/index.ts",
"start:prod-dev": "npm run build && node dist/index.js",
"start:prod": "node dist/index.js",
"start:dev": "nodemon --legacy-watch",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"author": "Ibonom",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.3.1",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"mysql2": ">=3.9.7",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.35.0",
"sequelize-cli": "^6.3.0",
"sequelize-typescript": "^2.1.5",
"sharp": "^0.32.6",
"xml": "^1.0.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.195",
"@types/multer": "^1.4.11",
"@types/mysql": "^2.15.21",
"@types/node": "^20.10.0",
"@types/supertest": "^6.0.2",
"@types/validator": "^13.11.6",
"@types/xml": "^1.0.11",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^5.0.0-alpha.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.1",
"node-loader": "^2.0.0",
"nodemon": "^2.0.22",
"prettier": "^3.0.0",
"supertest": "^7.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.1.6",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}