-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
64
65
66
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"migrator": "ts-node src/db/migrator/migrator-cli.ts",
"seeder": "ts-node src/db/migrator/seeder-cli.ts",
"dev:server": "nodemon index.ts",
"dev:client": "npm start --prefix ./client",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"build:server": "tsc",
"build:client": "npm run build --prefix ./client",
"build": "npm run build:server && npm run build:client",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@graphql-tools/schema": "^8.5.0",
"@graphql-tools/utils": "^8.8.0",
"apollo-server-core": "^3.10.0",
"apollo-server-express": "^3.10.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-graphql": "^0.12.0",
"express-handlebars": "^6.0.6",
"graphql": "^16.5.0",
"graphql-directive": "^0.2.1",
"graphql-playground-middleware-express": "^1.7.23",
"jsonwebtoken": "^8.5.1",
"node-ts": "^5.1.2",
"nodemailer": "^6.7.8",
"nodemailer-express-handlebars": "^5.0.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.21.3",
"umzug": "^3.1.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/graphql": "^14.5.0",
"@types/hbs": "^4.0.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^18.0.5",
"@types/nodemailer-express-handlebars": "^4.0.2",
"autoprefixer": "^10.4.8",
"concurrently": "^7.2.2",
"nodemon": "^2.0.19",
"postcss": "^8.4.16",
"sequelize-cli": "^6.4.1",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}