forked from primefaces/primereact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.94 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
86
87
88
89
{
"name": "primereact",
"private": false,
"version": "10.8.4",
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"build:lib": "NODE_ENV=production INPUT_DIR=components/lib/ OUTPUT_DIR=dist/ npm run build:package",
"build:lib:windows": "set \"NODE_ENV=production\" && set \"INPUT_DIR=components/lib/\" && set \"OUTPUT_DIR=dist/\" && npm run build:package",
"build:package": "npm run build:check && rollup -c && gulp build-resources && npm run build:api",
"dev:link": "NPM_LINK=true NODE_ENV=production INPUT_DIR=components/lib/ OUTPUT_DIR=dist/ npm run build:package:dev",
"dev:link:windows": "set \"NPM_LINK=true\" && set \"NODE_ENV=production\" && set \"INPUT_DIR=components/lib/\" && set \"OUTPUT_DIR=dist/\" && npm run build:package:dev",
"build:package:dev": "npm run build:check && gulp build-resources && npm run build:api && rollup -c --watch",
"build:api": "npm run apiwebtypes && npm run apidoc",
"build:check": "npm run lint && npm run format:check && npm run type:check && npm run security:check",
"security:check": "npm audit --production --audit-level high",
"format": "prettier --write \"{components,pages,service,api-scripts}/**/*.{js,ts,tsx,d.ts}\"",
"format:check": "prettier --check \"{components,pages,service,api-scripts}/**/*.{js,ts,tsx,d.ts}\"",
"lint": "next lint --max-warnings=0 --ignore-path .gitignore .",
"lint:fix": "next lint --fix --ignore-path .gitignore .",
"type:check": "tsc -p ./api-scripts/tsconfig.json",
"test": "jest --watch --coverage --silent",
"test:check": "jest --watchAll=false --coverage --silent",
"test:debug": "jest --watch --coverage",
"apidoc": "node ./api-scripts/build-apidoc.js",
"apiwebtypes": "node ./api-scripts/build-webtypes.js"
},
"dependencies": {
"@docsearch/react": "3.6.2",
"chart.js": "4.4.6",
"file-saver": "2.0.5",
"fs-extra": "^11.2.0",
"jspdf": "2.5.2",
"jspdf-autotable": "3.8.4",
"next": "12.3.4",
"path": "^0.12.7",
"primeflex": "^3.3.1",
"primeicons": "^7.0.0",
"quill": "2.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-transition-group": "^4.4.5",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.24.7",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^5.0.7",
"@stackblitz/sdk": "1.11.0",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.7.4",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/react-transition-group": "^4.4.11",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-dom": "^5.4.0",
"gulp": "^5.0.0",
"gulp-concat": "^2.6.1",
"gulp-flatten": "^0.4.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"gulp-uglifycss": "^1.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.3.3",
"rollup": "^2.79.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.79.4",
"typedoc": "0.24.8",
"typescript": "5.1.6"
},
"engines": {
"node": ">=18"
}
}