-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.83 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
{
"name": "react-metismenu-router",
"version": "1.2.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-dist-js-min": "webpack --mode=production --config webpack/dist-min.conf.js --progress --colors",
"build-dist-js": "webpack --mode=production --config webpack/dist.conf.js --progress --colors",
"build-dist": "rm -rf dist && npm run build-dist-js && npm run build-dist-js-min",
"build-lib": "rm -rf lib && babel src -d lib",
"build": "npm run build-lib && npm run build-dist",
"dev-server": "webpack-dev-server --config webpack/dev.conf.js --progress --colors --hot --inline",
"start": "npm run dev-server"
},
"author": {
"name": "Rômulo Cabral Santos",
"email": "romulosanttos1@gmail.com",
"homepage": "https://romulosanttos.github.io/"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Romulosanttos/react-metismenu-router.git"
},
"license": "ISC",
"dependencies": {
"classnames": "^2.2.6"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}