-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1012 Bytes
/
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
{
"name": "openbooks",
"version": "1.0.0-alpha",
"description": "OpenBooks API server",
"main": "src/index.ts",
"scripts": {
"start": "gulp watch",
"lint": "yarn eslint src --fix",
"init-db": "gulp build && node build/scripts/init-db.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo": "^2.32.5",
"apollo-server": "^2.25.3",
"apollo-server-errors": "^2.5.0",
"bcrypt": "^5.0.1",
"chalk": "^4.1.2",
"dotenv": "^8.2.0",
"graphql": "^15.5.0",
"mysql2": "^2.3.3",
"sequelize": "^6.20.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.17.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-nodemon": "^2.5.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
}
}