-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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": "react-simple-sidenav",
"version": "2.0.0",
"description": "A simple React component for side navigation",
"main": "dist/bundle.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production rollup -c",
"build:dev": "NODE_ENV=development rollup -c",
"watch": "NODE_ENV=development rollup -c -w",
"serve": "http-server ./demo",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gauravchl/react-simple-sidenav.git"
},
"keywords": [
"react",
"react-component",
"navigation",
"sidenav"
],
"author": "Gaurav Chikhale <mail@gauravchl.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gauravchl/react-simple-sidenav/issues"
},
"homepage": "https://github.com/gauravchl/react-simple-sidenav#readme",
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"@rollup/plugin-commonjs": "11.1.0",
"@rollup/plugin-node-resolve": "7.1.3",
"http-server": "0.12.1",
"prettier": "2.0.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"rollup": "2.6.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-bundle-size": "1.0.3",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "5.3.0"
},
"prettier": {
"singleQuote": true,
"printWidth": 120
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.11.0"
}
}