-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.19 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "addon-fidel",
"version": "1.0.0",
"description": "A LOKE addon to give frequently transacting customers the VIP treatment.",
"engines": {
"node": "14.20.0"
},
"scripts": {
"postinstall": "npm run build",
"build": "npm run build:server && npm run build:next",
"build:server": "tsc --project src/tsconfig.json",
"build:next": "next build",
"start": "npm run start:server",
"start:next": "next start",
"start:server": "ts-node --project src/tsconfig.json src/main.ts",
"test": "jest ."
},
"keywords": [],
"author": "LOKE",
"license": "MIT",
"cacheDirectories": [
"node_modules",
".next/cache"
],
"dependencies": {
"@loke/db-kit": "^1.0.0",
"@loke/design-system": "^1.0.0-rc.6",
"@loke/errors": "^0.4.4",
"@loke/http-client": "^1.0.5",
"@loke/http-kit": "^1.0.3",
"@loke/logger": "^3.2.4",
"@vanilla-extract/next-plugin": "^2.0.2",
"bootstrap": "^5.2.0",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"humps": "^2.0.1",
"knex": "^2.2.0",
"luxon": "^3.0.1",
"mini-css-extract-plugin": "^2.6.1",
"next": "^12.2.3",
"openid-client": "^5.1.8",
"pg": "^8.7.3",
"prom-client": "^14.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.3",
"reactstrap": "^9.1.2",
"swr": "^1.3.0",
"ulid": "^2.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^28.1.3",
"@types/cookie-session": "^2.0.44",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/humps": "^2.0.2",
"@types/jest": "^28.1.6",
"@types/luxon": "^3.0.0",
"@types/node": "^16.11.47",
"@types/pg": "^8.6.5",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vanilla-extract/babel-plugin": "^1.1.7",
"@vanilla-extract/webpack-plugin": "^2.1.11",
"babel-loader": "^8.2.5",
"eslint": "8.12.0",
"eslint-config-next": "12.1.3",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}