forked from OpenBeta/openbeta-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
50
51
52
{
"name": "openbeta-graphql",
"version": "0.0.1",
"description": "OpenBeta GraphQL API",
"exports": "./build/index.js",
"repository": "https://github.com/OpenBeta/openbeta-graphql.git",
"author": "viet nguyen <vietnguyen@noreply>",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/mdast": "^3.0.10",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"ts-standard": "^11.0.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@graphql-tools/schema": "^8.3.1",
"@types/uuid": "^8.3.3",
"apollo-datasource-mongodb": "^0.5.2",
"apollo-server": "^3.5.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"front-matter": "^4.0.2",
"globby": "11.0.4",
"graphql": "^16.2.0",
"mdast-util-from-markdown": "^1.2.0",
"mongoose": "^6.1.2",
"unist-util-is": "^5.1.1",
"uuid": "^8.3.2"
},
"scripts": {
"lint": "ts-standard",
"fix": "ts-standard --fix",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"build": "tsc -p tsconfig.build.json",
"clean": "tsc -b --clean && rm -rf build/*",
"serve": "node build/main.js",
"refresh-db": "./refresh-db.sh"
},
"standard": {
"plugins": [
"html"
],
"parser": "babel-eslint"
},
"type": "module",
"engines": {
"node": ">=16.0.0"
}
}