forked from creativetimofficial/material-kit-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.99 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
{
"name": "material-kit-react",
"version": "1.3.0",
"private": true,
"main": "dist/index.js",
"dependencies": {
"@material-ui/core": "3.1.1",
"@material-ui/icons": "3.0.1",
"classnames": "2.2.6",
"history": "4.7.2",
"moment": "2.22.2",
"node-sass-chokidar": "1.3.3",
"nouislider": "12.0.0",
"npm-run-all": "4.1.3",
"prop-types": "15.6.2",
"react": "16.5.2",
"react-datetime": "2.15.0",
"react-dom": "16.5.2",
"react-router-dom": "4.3.1",
"react-scripts": "1.1.5",
"react-slick": "0.23.1",
"react-swipeable-views": "0.13.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-import-rename": "1.0.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-es2015": "6.24.1"
},
"optionalDependencies": {
"ajv": "5.0.0",
"babel-eslint": "7.2.3",
"eslint": "4.19.1",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-react": "7.11.1",
"prettier": "1.14.3"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint:check": "eslint . --ext=js,jsx; exit 0",
"lint:fix": "eslint . --ext=js,jsx --fix; exit 0",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start",
"build-package-css": "node-sass-chokidar src/assets/scss/material-kit-react.scss dist/material-kit-react.css",
"build-package": "npm run build-package-css && babel src --out-dir dist"
}
}