-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"name": "@codedrops/lib",
"version": "0.0.55",
"private": false,
"description": "Custom utils, helpers, hooks",
"main": "dist/index.js",
"scripts": {
"prebuild": "rm -rf dist",
"dev": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.build.js",
"postdeploy": "npm version patch",
"publish:npm": "npm publish --access=public",
"deploy": "npm run build && npm run publish:npm",
"lint": "eslint --ext js,jsx src/",
"fix": "eslint --fix src/",
"gen": "jsdoc -c jsdocs.json"
},
"keywords": [],
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"eslint": "^7.31.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"jsdoc": "^3.6.7",
"mixpanel-browser": "^2.41.0",
"moment": "^2.29.1",
"react": "^16.13.1",
"terser-webpack-plugin": "^5.3.0",
"webpack": "^4.41.6",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/318097/lib.git"
},
"author": "Mehul Lakhanpal",
"license": "ISC",
"bugs": {
"url": "https://github.com/318097/lib/issues"
},
"homepage": "https://github.com/318097/lib#readme"
}