-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.13 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.13 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "fullstack-server",
"version": "1.0.0",
"description": "fullstack freelance test from beijing tech company",
"main": "dist/server.js",
"files": [
"dist/**/*"
],
"workspaces": [
"src/**/*"
],
"scripts": {
"cinstall": "cd client && npm install",
"cstart": "npm start --prefix client",
"cbuild": "npm run build --prefix client",
"cleanup": "rimraf dist",
"compiler": "tsc --pretty",
"build": "npm run cleanup && npm run compiler",
"test": "cross-env NODE_ENV=test jest --runInBand --forceExit",
"start": "node dist/server.js",
"dev": "cross-env NODE_ENV=development tsnd --poll --respawn --watch src/**/*.{ts} src/server.ts",
"formatter": "prettier src/**/*.{ts,d.ts} --check --write",
"fixed": "eslint src/**/*.{ts,d.ts} --fix"
},
"repository": {
"url": "https://github.com/restuwahyu13",
"type": "git"
},
"keywords": [
"FulstackDev"
],
"author": "restuwahyu13",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.26.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.12.1",
"helmet": "^4.6.0",
"is-any-type": "0.0.4",
"js-base64": "^3.6.1",
"jsonwebtoken": "^8.5.1",
"local-storage": "^2.0.0",
"multer": "^1.4.3",
"mysql2": "^2.3.0",
"react-icons": "^4.2.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.6.5",
"sequelize-typescript": "^2.1.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.1",
"@types/compression": "^1.7.1",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/eslint": "^7.28.0",
"@types/express": "^4.17.13",
"@types/express-validator": "^3.0.0",
"@types/faker": "^5.5.8",
"@types/helmet": "^4.0.0",
"@types/jest": "^27.0.1",
"@types/js-base64": "^3.3.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^16.7.7",
"@types/rimraf": "^3.0.2",
"@types/sequelize": "^4.28.10",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-env": "^22.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-eslint-plugin": "^3.5.3",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsdoc": "^36.0.8",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"faker": "^5.5.3",
"husky": "^4.3.7",
"jest": "^26.6.3",
"morgan": "^1.10.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"supertest": "^6.1.6",
"ts-jest": "^26.4.4",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"pre-commit": ""
}
}
}