-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.24 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
{
"name": "apollo-server-4-boilerplate",
"version": "1.0.0",
"description": "Apollo Server 4 Boilerplate",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"start": "npm run clean && npm run build:production && node dist/main.js",
"dev": "npm run clean && npm run build && concurrently --kill-others \"webpack --watch --mode=development\" \"forever -w ./dist/main.js\"",
"build": "webpack --mode development",
"build:production": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1",
"commit": "git-cz",
"lint:check": "prettier . --check",
"lint:write": "prettier . --write"
},
"prisma": {
"seed": "ts-node src/prisma/seed.ts",
"schema": "src/prisma/schema.prisma"
},
"keywords": [
"apollo",
"graphql",
"boilerplate"
],
"author": "TAnas0",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/preset-env": "7.25.7",
"@commitlint/config-angular": "^7.1.2",
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.19.5",
"@types/graphql": "^14.5.0",
"@types/node": "^10.17.60",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"commitizen": "^4.3.0",
"concurrently": "9.0.1",
"forever": "4.0.3",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"@commitlint/prompt": "^19.3.1",
"eslint": "5.7.0",
"eslint-config-prettier": "3.1.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-loader": "3.0.4",
"eslint-plugin-prettier": "3.0.0",
"graphql-tag": "2.12.6",
"standard": "12.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-node-externals": "1.7.2"
},
"dependencies": {
"@apollo/server": "^4.11.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/runtime": "7.25.7",
"@graphql-tools/merge": "^9.0.7",
"@prisma/client": "^5.19.1",
"config": "^3.0.1",
"graphql": "^16.9.0",
"graphql-modules": "^2.3.0",
"graphql-tag": "^2.12.6",
"js-yaml": "^3.12.0",
"prisma": "^5.19.1",
"ts-node": "^10.9.2"
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
}
}