-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.48 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": "solid-index",
"version": "0.0.0",
"description": "index server for solid apps",
"license": "MIT",
"scripts": {
"start": "tsc && NODE_ENV=dev node --unhandled-rejections=strict ./dist/index.js",
"debug": "export DEBUG=* && yarn start",
"test": "jest --runInBand",
"format": "prettier '**/*.{ts,json}' --write",
"lint": "eslint . --ext .ts",
"typeorm": "typeorm-ts-node-commonjs",
"migrate": "yarn typeorm migration:run -d src/services/db/data-source.ts"
},
"dependencies": {
"@inrupt/solid-client": "^1.22.0",
"@solid/access-token-verifier": "^2.0.0",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.0.0",
"express": "^4.18.0",
"express-winston": "^4.2.0",
"lodash.intersection": "^4.4.0",
"mysql": "^2.18.1",
"rdf-namespaces": "^1.9.2",
"rdf-parse": "^2.0.0",
"typeorm": "^0.3.6",
"winston": "^3.7.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/lodash.intersection": "^4.4.7",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.0.2",
"prettier": "^2.6.2",
"source-map-support": "^0.5.21",
"supertest": "^6.2.3",
"ts-jest": "^28.0.0-next.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}