-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 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
{
"name": "evolute",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node build/server.js",
"build": "tsc",
"dev": "tsc-watch --onSuccess \"node ./build/server.js\"",
"lint:check": "eslint ./**/*.{js,jsx,ts,tsx} --ignore-path .gitignore",
"lint:fix": "eslint ./**/*.{js,jsx,ts,tsx} --fix --ignore-path .gitignore",
"validate": "yarn lint:check",
"format": "prettier --write ./**/*.{js,jsx,ts,tsx,css,md,json} --config ./.prettierrc --ignore-path .gitignore"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mongodb": "^4.0.7",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-unused-imports": "^1.1.1",
"prettier": "^2.5.1",
"tsc-watch": "^4.6.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@sentry/node": "^6.17.5",
"@sentry/tracing": "^6.17.5",
"axios": "^0.20.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.1.3",
"helmet": "^5.0.2",
"module-alias": "^2.2.2",
"mongodb": "^3.6.2",
"request-ip": "^2.1.3",
"xss-clean": "^0.1.1",
"yup": "^0.29.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run validate"
}
},
"_moduleAliases": {
"@api": "./build/api",
"@utils": "./build/api/utils",
"@health": "./build/api/health"
}
}