-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.77 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.77 KB
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
{
"name": "advanced-color-picker",
"version": "1.1.0",
"description": "Advanced Color Picker",
"author": "CodingJack",
"license": "MIT",
"keywords": [
"Color",
"Gradient",
"Color Picker"
],
"homepage": "https://www.codingjack.com/advanced-color-picker",
"repository": {
"type": "git",
"url": "https://github.com/CodingJack/Advanced-Color-Picker"
},
"bugs": {
"url": "https://github.com/CodingJack/Advanced-Color-Picker",
"email": "support@codingjack.com"
},
"main": "index.js",
"dependencies": {
"array-move": "^3.0.1",
"fix": "^0.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-sortable-hoc": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"admin-bro": "^3.2.5",
"babel-loader": "^8.2.2",
"core-js": "^3.16.1",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-webpack-plugin": "^3.0.1",
"express": "^4.17.1",
"node-sass": "^6.0.1",
"sass-loader": "^12.1.0",
"source-map-loader": "^3.0.0",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.1.4",
"webpack": "^5.49.0",
"webpack-cli": "^4.7.2"
},
"scripts": {
"watch": "webpack --watch ./src/js/index.js --output-path ./dist/js --config ./config/webpack.config.js --mode=development",
"build": "webpack ./src/js/index.js --output-path ./dist/js --config ./config/webpack.config.js --mode=production"
}
}