forked from TFNS/CTFNote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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
{
"name": "ctfnote-api",
"version": "1.0.0",
"description": "GraphQL API for CTFNotes",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production node dist/index.js",
"build": "tsc",
"lint": "eslint --fix 'src/**/*.ts'",
"format": "prettier --write 'src/*.ts'",
"dev": "NODE_ENV=development nodemon src/index.ts",
"dev:migrate": "DATABASE_URL= yarn run db-migrate -e dev up"
},
"lint-staged": {
"src/**/*.{ts,css,html,vue}": [
"yarn run prettier --write"
]
},
"dependencies": {
"@graphile-contrib/pg-many-to-many": "^1.0.0",
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"@graphile/pg-pubsub": "^4.11.0",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"graphile-utils": "^4.11.2",
"graphql": "^15.6.1",
"graphql-upload": "^12.0.0",
"ical-generator": "^3.2.1",
"postgraphile": "^4.11.0",
"postgraphile-plugin-connection-filter": "^2.1.1",
"postgres-migrations": "^5.3.0",
"slugify": "^1.6.5"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/graphql-upload": "^8.0.7",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"lint-staged": "^11.2.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
}
}