forked from toodols/lepton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 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
{
"name": "lepton",
"version": "0.1.0",
"private": true,
"type": "module",
"repository": "https://github.com/toodols/lepton.git",
"scripts": {
"dev": "tsc --project ./lepton-client/tsconfig.json && tsc --project ./tsconfig.server.json && node --inspect --experimental-specifier-resolution=node ./out/server-entry.js",
"dropcollections": "tsc --project ./tsconfig.server.json && node --experimental-specifier-resolution=node ./out/dropall.js",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@reduxjs/toolkit": "^1.8.2",
"body-parser": "^1.20.0",
"dotenv-flow": "^3.2.0",
"express": "^4.18.1",
"i18next": "^21.8.5",
"i18next-browser-languagedetector": "^6.1.4",
"mongodb": "^4.6.0",
"next": "^12.1.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-i18next": "^11.16.9",
"react-infinite-scroll-component": "^6.1.0",
"react-modal": "^3.15.1",
"react-redux": "^8.0.2",
"react-select": "^5.3.2",
"redis": "^4.1.0",
"sass": "^1.52.1",
"socket.io": "^4.5.1"
},
"devDependencies": {
"@types/dotenv-flow": "^3.2.0",
"@types/express": "^4.17.13",
"@types/node": "17.0.36",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.5",
"@types/react-modal": "^3.13.1",
"eslint": "8.16.0",
"eslint-config-next": "12.1.6",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}