forked from primefaces/primereact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 3.05 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
{
"name": "primereact",
"private": false,
"version": "8.7.3-SNAPSHOT",
"scripts": {
"dev": "next dev",
"start": "next start",
"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 && (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}\"",
"format:check": "prettier --check \"{components,pages,service,api-generator}/**/*.{js,ts,tsx}\"",
"lint": "next lint --max-warnings=0",
"lint:fix": "next lint --fix",
"type:check": "tsc",
"test": "jest --watch --coverage",
"test:check": "jest --watchAll=false --coverage"
},
"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.3.1",
"primeflex": "^3.2.1",
"primeicons": "^6.0.1",
"quill": "1.3.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-final-form": "^6.5.9",
"react-hook-form": "^7.39.1",
"react-transition-group": "^4.4.5",
"xlsx": "0.18.5"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^5.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.11.9",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/react-transition-group": "^4.4.5",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"eslint": "8.26.0",
"eslint-config-next": "13.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest-dom": "^4.0.2",
"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.2.1",
"jest-environment-jsdom": "^29.2.1",
"prettier": "2.7.1",
"rollup": "^2.79.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.55.0",
"typescript": "^4.8.4"
}
}