-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 999 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
40
{
"name": "scoutbase-server",
"version": "1.0.0",
"description": "Node js server for scoutbase ",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "npm run build && npm run start",
"start": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"knex": "knex"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MBehtemam/scoutbase-server.git"
},
"keywords": [
"graphql",
"nodejs",
"knexjs"
],
"author": "Mohammad Bagher Ehtemam (MBehtemam)",
"license": "ISC",
"bugs": {
"url": "https://github.com/MBehtemam/scoutbase-server/issues"
},
"homepage": "https://github.com/MBehtemam/scoutbase-server#readme",
"dependencies": {
"apollo-server": "^2.9.3",
"graphql": "^14.5.4",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.3",
"sqlite3": "^4.1.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.3.3",
"tslint": "^5.19.0",
"typescript": "^3.6.2"
}
}