-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
53
{
"name": "phylogeny-graphql-server",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"dev": "nodemon ./src/serve.ts",
"build": "tsc -p . && ncp src dist",
"start": "node 'dist/server.js'",
"test": "jest",
"lint": "eslint \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/phylogeny-explorer/phylogeny-graphql-server.git"
},
"author": "Phylogeny Explorer Project",
"license": "ISC",
"bugs": {
"url": "https://github.com/phylogeny-explorer/phylogeny-graphql-server/issues"
},
"homepage": "https://github.com/phylogeny-explorer/phylogeny-graphql-server#readme",
"dependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"apollo-datasource-rest": "^0.6.9",
"apollo-server": "^2.25.3",
"babel-jest": "^27.5.1",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"lodash": "^4.17.21",
"ncp": "^2.0.0",
"sparql-http-client": "^2.4.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@types/sparql-http-client": "^2.2.8",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.3",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
}
}