forked from primefaces/primereact
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 3.47 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
{
"name": "primereact",
"private": false,
"version": "11.0.0-SNAPSHOT",
"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:package": "npm run build:check && rollup -c && gulp build-resources && npm run build:api",
"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 && (NODE_ENV=test npm run test:check)",
"security:check": "npm audit --production --audit-level high",
"format": "prettier --write \"{components,pages,service,api-generator}/**/*.{js,ts,tsx,d.ts}\"",
"format:check": "prettier --check \"{components,pages,service,api-generator}/**/*.{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",
"test": "jest --watch --coverage",
"test:check": "jest --watchAll=false --coverage",
"apidoc": "node ./api-generator/build-apidoc.js",
"apiwebtypes": "node ./api-generator/build-webtypes.js"
},
"dependencies": {
"@docsearch/react": "3.5.2",
"chart.js": "4.3.0",
"file-saver": "2.0.5",
"final-form": "^4.20.9",
"formik": "^2.2.9",
"fs-extra": "^10.1.0",
"jspdf": "2.5.1",
"jspdf-autotable": "3.6.0",
"next": "12.3.4",
"path": "^0.12.7",
"primeflex": "^3.3.1",
"primeicons": "^6.0.1",
"quill": "1.3.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-final-form": "^6.5.9",
"react-hook-form": "^7.45.2",
"react-transition-group": "^4.4.5",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5",
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@stackblitz/sdk": "1.9.0",
"@svgr/webpack": "^6.5.1",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^20.8.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-transition-group": "^4.4.6",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"eslint": "8.48.0",
"eslint-config-next": "13.5.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest-dom": "^4.0.3",
"gulp": "^4.0.2",
"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.6.4",
"jest-environment-jsdom": "^29.6.4",
"prettier": "2.8.8",
"rollup": "^2.79.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.66.1",
"typedoc": "0.24.8",
"typescript": "5.1.6"
},
"engines": {
"node": ">=16"
}
}