-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.95 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
{
"name": "teacher-browser-back",
"version": "1.0.0",
"description": "",
"engines": {
"node": "16.13.0"
},
"main": "index.js",
"scripts": {
"dev": "nodemon --exec babel-node src/server.js --delay 2",
"studio": "npx prisma studio",
"test": "jest",
"build": "babel src --out-dir build",
"start": "node server/bin/www.js",
"rebuild": "set NODE_ENV=dev&& nodemon server/bin/www.js",
"precommit": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"**/*.js": [
"eslint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/teacher-kiwi/teacher-browser-back.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/teacher-kiwi/teacher-browser-back/issues"
},
"homepage": "https://github.com/teacher-kiwi/teacher-browser-back#readme",
"dependencies": {
"@babel/runtime": "^7.17.2",
"@graphql-tools/load-files": "^6.5.2",
"@graphql-tools/merge": "^8.2.1",
"@prisma/client": "^3.5.0",
"apollo-server": "^3.10.1",
"apollo-server-core": "^3.5.0",
"apollo-server-express": "^3.5.0",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"dotenv": "^16.0.1",
"express": "^4.17.1",
"graphql": "^16.5.0",
"graphql-tools": "^8.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.13",
"morgan": "^1.10.0",
"nodemailer": "^6.7.2"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.14.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"mongodb-memory-server": "^8.9.0",
"nodemon": "^2.0.12",
"prettier": "^2.7.1",
"prisma": "^3.5.0",
"supertest": "^6.2.4"
}
}