-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.54 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
{
"devDependencies": {
"@types/eslint": "^8.44.6",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.5",
"@types/supertest": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"semver": "^7.5.4",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@stencila/encoda-1-0-1": "npm:@stencila/[email protected]",
"@stencila/encoda-1-0-2": "npm:@stencila/[email protected]",
"@stencila/encoda-1-0-3": "npm:@stencila/[email protected]",
"@stencila/encoda-1-0-6": "npm:@stencila/[email protected]",
"@stencila/encoda-1-0-7": "npm:@stencila/[email protected]",
"@stencila/encoda-1-0-8": "npm:@stencila/[email protected]",
"@stencila/encoda-1-0-9": "npm:@stencila/[email protected]",
"body-parser": "^1.20.3",
"express": "^4.21.1"
},
"scripts": {
"start": "ts-node src/server.ts",
"start:dev": "nodemon src/server.ts",
"test": "jest",
"test:integration": "jest -c jest.config.integration.ts",
"lint": "eslint --ext .ts src/ integration-tests/",
"lint:fix": "eslint --fix --ext .ts src/ integration-tests/"
},
"packageManager": "[email protected]"
}