-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.04 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
89
90
91
92
{
"name": "findamusicien",
"version": "1.0.0",
"description": "A website for my school where the musicians can contact each others, create groups and register to play at events",
"main": "index.ts",
"dependencies": {
"async": "^3.2.1",
"bcrypt": "^5.0.1",
"cookie": "^0.4.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-openapi-validator": "^4.13.2",
"express-rate-limit": "^5.5.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"sql-template-strings": "^2.2.2",
"swagger-ui-express": "^4.1.6",
"typeorm": "^0.2.45",
"uuid": "^8.3.2",
"winston": "^3.6.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/plugin-proposal-decorators": "^7.17.2",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/async": "^3.2.7",
"@types/bcrypt": "^5.0.0",
"@types/cookie": "^0.4.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.7.6",
"@types/pg": "^8.6.1",
"@types/rimraf": "^3.0.2",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"babel-jest": "^27.2.1",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"goodparts": "^1.3.0",
"husky": "^7.0.2",
"jest": "^27.1.0",
"nodemon": "^2.0.12",
"openapi-types": "^9.3.0",
"openapi-typescript": "^4.4.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"supertest": "^6.1.6",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"start": "node ./build/index.js",
"dev": "nodemon -L",
"build": " rimraf -f 'build' && npm run types && npm run compile",
"lint": "eslint --fix './**/*.ts'",
"prepare": "husky install",
"uuid": "echo `uuidgen`",
"password": "ts-node api/command/generateHash",
"prettier": "prettier --config .prettierrc './**/*.ts' --write",
"types": "tsc --project ./",
"generateTypes": "ts-node api/command/generateType",
"seed": "ts-node api/db/reset",
"reset": "docker exec -i findAMusician_backend npm run seed",
"compile": "babel --env-name=mjs --out-file-extension=.mjs --out-dir=build --extensions '.ts,.js' --source-maps=true --ignore node_modules, build ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RomainGuarinoni/findAMusicien.git"
},
"author": "RomainGuarinoni",
"license": "MIT",
"bugs": {
"url": "https://github.com/RomainGuarinoni/findAMusicien/issues"
},
"homepage": "https://github.com/RomainGuarinoni/findAMusicien#readme"
}