-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.46 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
{
"name": "kill-strapi",
"version": "1.0.0",
"description": "",
"scripts": {
"postinstall": "npm run regen-husky",
"regen-husky": "ts-node-script src/util/generateHuskyHooks.ts",
"regen-husky-force": "ts-node-script src/util/replaceHuskyHooks.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node-dev --respawn -r tsconfig-paths/register src/index.ts",
"build": "tsc --project ./",
"lint-check": "eslint ./ --ext ts,tsx,js,jsx",
"lint-fix": "eslint --fix ./ --ext ts,tsx,js,jsx",
"prepare": "husky install",
"stop-redis": "docker stop cookie-redis",
"rm-redis": "docker rm cookie-redis",
"build-redis": "docker build -t redis .;",
"start-redis": "docker run --name cookie-redis -dp 6379:6379 redis",
"redis": "npm run stop-redis; npm run rm-redis; npm run build-redis; npm run start-redis"
},
"browserslist": "defaults",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server": "^2.22.2",
"apollo-server-express": "^2.22.2",
"bcryptjs": "^2.4.3",
"connect-redis": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"graphql": "^15.5.0",
"graphql-type-json": "^0.3.2",
"ioredis": "^4.26.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^ 5.12.4",
"mongoose-autopopulate": "^0.13.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@typegoose/typegoose": "^7.6.0",
"@types/bcryptjs": "^2.4.2",
"@types/connect-redis": "^0.0.16",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/ioredis": "^4.22.3",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongoose": "^5.10.4",
"@types/mongoose-autopopulate": "^0.10.1",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "4.18.0",
"class-validator": "^0.13.1",
"eslint": "^7.23.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-unused-imports": "^1.1.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"tsconfig-paths": "^3.9.0",
"type-graphql": "^1.1.1",
"typescript": "^4.2.3"
},
"lint-staged": {
"*.ts": [
"npm run lint"
]
}
}