-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.79 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
79
80
81
82
83
84
85
{
"name": "@fractalerp/fractal-js",
"appName": "Fractal JS",
"version": "1.0.1",
"description": "A component based framework for NodeJs Applications",
"private": true,
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json && npm run emit:cli",
"start": "cross-env NODE_ENV=production node dist/server.js",
"emit": "tsc",
"emit:cli": "tsc -p ./tsconfig.cli.json",
"pretest": "npm run lint && npm run build && tsc",
"test": "NODE_ENV='test' RDBMS_DATABASE_URI='mysql://' mocha --config .mocharc.json",
"test:dev": "NODE_ENV='test' RDBMS_DATABASE_URI='mysql://' mocha --config .mocharc.dev.json",
"test:unit": "NODE_ENV='test' RDBMS_DATABASE_URI='mysql://' nyc -r lcov -e .ts -x \"*.spec.ts\" mocha --config .mocharc.json && nyc report",
"coverage": "NODE_ENV='test' RDBMS_DATABASE_URI='mysql://' nyc --reporter cobertura mocha --config .mocharc.dev.json",
"lint": "next lint",
"lint:fix": "npm run lint -- --fix",
"build:development": "grunt development",
"build:release": "grunt release",
"prepare": "husky"
},
"dependencies": {
"@fractalerp/active-record-js": "^1.0.16",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/figlet": "^1.7.0",
"@types/morgan": "^1.9.9",
"@types/passport": "^1.0.16",
"@types/passport-jwt": "^4.0.1",
"@types/useragent": "^2.3.4",
"app-root-path": "^3.1.0",
"body-parser": "^1.20.2",
"commander": "^12.1.0",
"connect-redis": "^7.1.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"express-session": "^1.18.0",
"figlet": "^1.8.0",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"mongoose": "^8.9.2",
"morgan": "^1.10.0",
"next": "latest",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redis": "^4.7.0",
"sequelize": "^6.37.3",
"useragent": "^2.3.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.1",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.3.1",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.18.1",
"chai": "^5.1.2",
"eslint": "^8.57.0",
"eslint-config-next": "15.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.36.1",
"globals": "^15.9.0",
"husky": "^9.1.7",
"i": "^0.3.7",
"mocha": "^10.7.3",
"nodemon": "^2.0.20",
"npm": "^10.8.2",
"nyc": "^17.0.0",
"sinon": "^19.0.2",
"tsx": "^4.17.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.1.0"
}
}