-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 978 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
{
"name": "tecban",
"version": "1.0.0",
"main": "server.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --inspect --ignore-watch node_modules src/server.ts",
"build": "tsc",
"start": "node build/server.js"
},
"devDependencies": {
"@types/graphql-iso-date": "^3.4.0",
"@types/node": "^14.0.26",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^3.9.5"
},
"dependencies": {
"apollo-server": "^2.15.0",
"axios": "^0.21.1",
"date-fns": "^2.15.0",
"dotenv": "^8.2.0",
"graphql": "^15.1.0",
"graphql-iso-date": "^3.6.1",
"uuidv4": "^6.2.0"
}
}