-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "ApolloYTCourse",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"devseed": "source development.env && npm run knex migrate:latest && npm run knex seed:run",
"start:dev": "source development.env && nodemon",
"knex": "./node_modules/.bin/knex --knexfile src/database/knexfile.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express-jwt": "^6.0.1",
"@types/jsonwebtoken": "^8.5.0",
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"express-jwt": "^6.0.0",
"graphql": "^15.5.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.2",
"sqlite3": "^5.0.2",
"typescript": "^4.1.5",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.31",
"@types/uuid": "^8.3.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1"
}
}