-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1023 Bytes
/
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
{
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"lint": "eslint \"src\"",
"start": "npm run build && dotenv -c '.env' -- node dist/app"
},
"dependencies": {
"adminjs": "^7.4.1",
"@adminjs/express": "^6.1.0",
"express": "^4.18.2",
"express-formidable": "^1.2.0",
"express-session": "^1.17.3",
"@adminjs/mongoose": "^4.0.0",
"mongoose": "^7.6.6"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"dotenv-cli": "^7.2.1",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.1.0",
"typescript": "^5.0.4",
"@types/express": "^4.17.17",
"tslib": "^2.5.0"
},
"name": "white-adminjs"
}