forked from primefaces/primeflex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.7 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
{
"name": "primeflex",
"version": "4.0.0-rc.1-SNAPSHOT",
"description": "PrimeFlex is a lightweight responsive CSS utility library to accompany Prime UI libraries and static webpages as well.",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write \"{components,pages}/**/*.js\"",
"format:check": "prettier --check \"{components,pages}/**/*.js\"",
"lint": "next lint --max-warnings=0 --ignore-path .gitignore .",
"lint:fix": "next lint --fix --ignore-path .gitignore .",
"build:lib": "NODE_ENV=production npm run build:package",
"build:package": "npm run build:check && npm run build:sass && gulp build-lib",
"build:sass": "sass --update styles/lib/primeflex.scss:dist-lib/primeflex.css --no-source-map && sass --update styles/lib/primeflex.scss:dist-lib/primeflex.min.css --no-source-map --style compressed && sass --update styles/lib/themes:dist-lib/themes --no-source-map",
"build:check": "npm run lint && npm run format:check"
},
"dependencies": {
"@docsearch/react": "^3.3.3",
"next": "13.2.1",
"primereact": "^9.2.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"eslint": "8.35.0",
"eslint-config-next": "13.2.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest-dom": "^4.0.3",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.0",
"gulp-flatten": "^0.4.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"gulp-uglifycss": "^1.0.6",
"prettier": "^2.8.4",
"sass": "^1.58.3"
}
}