forked from primefaces/primereact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.88 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
{
"name": "primereact",
"version": "2.0.0-beta.10-SNAPSHOT",
"homepage": "/primereact",
"repository": {
"type": "git",
"url": "https://github.com/primefaces/primereact.git"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-polyfill": "^6.26.0",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-flatten": "^0.2.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.3",
"gulp-uglifycss": "^1.0.6",
"react-scripts": "1.0.11",
"axios": "^0.15.3",
"chart.js": "2.7.1",
"classnames": "^2.2.5",
"fullcalendar": "4.0.0-alpha.2",
"quill": "1.3.3",
"nanoscroller": "^0.8.7",
"prop-types": "^15.5.0",
"primeicons": "1.0.0",
"primeflex": "1.0.0-rc.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-router-dom": "^4.3.1",
"react-transition-group": "^2.4.0",
"node-sass-chokidar": "^1.3.0",
"npm-run-all": "^4.1.3",
"prismjs": "1.6.0"
},
"scripts": {
"build-css": "node-sass-chokidar src/sass/ -o src/sass/ | node-sass-chokidar public/resources/themes/ -o public/resources/themes/",
"watch-css": "npm run build-css && node-sass-chokidar src/sass/ -o src/sass/ --watch --recursive | node-sass-chokidar public/resources/themes/ -o public/resources/themes/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js ",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"compile-components": "babel src/components --out-dir components --presets es2015,react,stage-0 --copy-files",
"build-resources": "gulp build-resources",
"build-exports": "gulp build-exports"
}
}