-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·77 lines (77 loc) · 2.59 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
{
"name": "license-component",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npx nodemon server.ts",
"build": "next build",
"create:reports": "license-checker && npm run report:licenses:summary && npm run report:licenses:json && npm run report:licenses:csv && npm run report:dependencies:graph",
"report:licenses:unknown": "license-checker --onlyunknown",
"report:licenses:json": "license-checker --relativeLicensePath --json --out ./reports/dependency_licenses.json",
"report:licenses:csv": "license-checker --relativeLicensePath --csv --csvComponentPrefix --customPath ./configs/config.license-checker.json --out ./reports/dependency_licenses.csv",
"report:licenses:summary": "license-checker --summary --out ./reports/dependency_licenses.summary.txt",
"report:dependencies:graph": "npm list --depth=2 > ./reports/dependencies.graph.txt",
"start": "npx ts-node server.ts",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "^5.0.0-alpha.114",
"@mui/material": "^5.11.2",
"@mui/x-date-pickers": "^5.0.12",
"@types/axios": "^0.14.0",
"@types/connect-redis": "0.0.20",
"@types/cookie": "^0.5.4",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/express-session": "^1.17.5",
"@types/node": "18.11.15",
"@types/node-schedule": "^2.1.0",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@types/react-router-dom": "^5.3.3",
"@types/redis": "^4.0.11",
"@types/swagger-jsdoc": "^6.0.1",
"@types/uuid": "^9.0.0",
"axios": "^1.2.1",
"connect-redis": "^7.0.1",
"cookie": "^0.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"license_manager": "git+https://github.com/fraunhoferfokus/cc_license-manager.git",
"moment": "^2.29.4",
"moment-jalaali": "^0.9.6",
"next": "^13.5.4",
"node-schedule": "^2.1.1",
"nodemon": "^2.0.20",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
"react-select": "^5.7.3",
"redis": "^4.6.5",
"swagger-jsdoc": "^6.2.8",
"ts-node": "^10.9.1",
"typescript": "4.9.4",
"uuid": "^9.0.0",
"zustand": "^4.1.5"
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"postcss": "^8.4.20",
"tailwindcss": "^3.2.4"
},
"nodemonConfig": {
"ignore": [
"**/zustand/**",
"**/helper/**"
],
"delay": 2500
},
"optionalDependencies": {
"license-checker": "^25.0.1"
}
}