forked from primefaces/primereact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.62 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
{
"name": "primereact",
"private": false,
"version": "8.5.0-SNAPSHOT",
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"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": "node ./api-generator/build-api.js",
"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-check": "prettier --check \"{components,pages,service,api-generator}/**/*.{js,ts,tsx}\"",
"format": "prettier --write \"{components,pages,service,api-generator}/**/*.{js,ts,tsx}\"",
"start": "next start",
"lint": "next lint --max-warnings=0",
"type-check": "tsc"
},
"dependencies": {
"chart.js": "3.9.1",
"file-saver": "2.0.5",
"final-form": "^4.20.7",
"formik": "^2.2.6",
"fs-extra": "^10.1.0",
"jspdf": "2.5.1",
"jspdf-autotable": "3.5.25",
"next": "12.2.5",
"primeflex": "^3.2.1",
"primeicons": "^5.0.0",
"quill": "1.3.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-final-form": "^6.5.9",
"react-hook-form": "^7.34.2",
"react-transition-group": "^4.4.5",
"xlsx": "0.18.5"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@types/node": "^18.6.4",
"@types/react": "^18.0.16",
"@types/react-dom": "^18.0.6",
"@types/react-transition-group": "^4.4.5",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"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",
"prettier": "2.7.1",
"rollup": "^2.52.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.53.0",
"typescript": "^4.7.4"
}
}