-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "qrioso",
"version": "0.0.1",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.16.0"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"generate": "lerna run generate --parallel --scope @qrioso/db --scope @qrioso/server",
"migrate": "lerna run migrate --stream",
"lint": "eslint ./packages/** --ext .ts --ext .tsx --quiet --cache --cache-location \".eslintcache/\"",
"dev": "(cd packages/qrioso-server; yarn dev)",
"start": "(cd packages/qrioso-server; yarn start)",
"client-start": "(cd packages/qrioso-server; yarn start)"
},
"dependencies": {
"@qrioso/server": "0.0.1",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@qrioso/types": "0.0.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "18.15.11",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"eslint": "8.38.0",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "6.1.1",
"lerna": "^6.6.2",
"standard": "17.0.0",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"ts-standard": "12.0.2",
"typescript": "5.0.4"
},
"ts-standard": {
"eslint": "./node_modules/ts-standard/eslintrc.json"
}
}