-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.8 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
80
81
82
83
84
85
86
87
88
{
"name": "geekschool",
"version": "1.0.0",
"description": "geekschool",
"main": "index.ts",
"scripts": {
"start": "cross-env NODE_ENV=production node dist/server/index.js",
"dev": "cross-env NODE_ENV=development nodemon server/index.ts",
"test": "cross-env NODE_ENV=test jest --forceExit --detectOpenHandles --runInBand server/__test__/",
"lint": "eslint --ext .ts server/",
"lint-fix": "eslint --ext .ts server/ --fix && cd client && npm run lint-fix",
"lint:client": "cd client && npm run lint",
"format-client": "cd client && npm run format",
"dbBuild": "cross-env NODE_ENV=development ts-node ./server/database/build.ts",
"dbSeed": "cross-env NODE_ENV=development ts-node ./server/database/seed.ts",
"dbBuildProd": "cross-env NODE_ENV=production ts-node ./server/database/build.ts",
"dbSeedProd": "cross-env NODE_ENV=production ts-node ./server/database/seed.ts",
"build": "tsc",
"postBuild": "npm i && npm run build && cd client && npm i && npm run build"
},
"pre-commit": [
"format-client",
"test",
"lint-fix",
"lint",
"lint:client"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CA-G12/GeekSchool.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CA-G12/GeekSchool/issues"
},
"homepage": "https://github.com/CA-G12/GeekSchool#readme",
"dependencies": {
"ts-node": "^10.9.1",
"ts-jest": "^29.0.3",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/jest": "^29.1.2",
"@types/node": "^17.0.25",
"@types/jsonwebtoken": "^8.5.8",
"@types/supertest": "^2.0.12",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"i18next": "^22.0.2",
"jest": "^29.1.2",
"joi": "^17.6.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"rc-virtual-list": "^3.4.11",
"sequelize": "^6.25.0",
"sweetalert2": "^11.6.1"
},
"devDependencies": {
"typescript": "^4.8.4",
"@commitlint/cli": "^17.1.2",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/joi": "^17.2.3",
"@types/morgan": "^1.9.3",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"concurrently": "^7.4.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"jest": "^29.1.2",
"nodemon": "^2.0.15",
"pre-commit": "^1.2.2",
"supertest": "^6.2.3"
}
}