-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.39 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "boxshadows",
"version": "0.1.0",
"description": "create and tweak CSS box-shadows ✨",
"scripts": {
"start:dev": "webpack-dev-server",
"start": "npm run start:dev",
"build": "NODE_ENV=production webpack",
"build:analyze": "ANALYZE_BUNDLES=true NODE_ENV=production webpack",
"lint": "eslint --ext .ts,.tsx ./"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css}": [
"eslint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/campvanilla/boxshadows.git"
},
"author": "Abinav Seelan <[email protected]>, Aditi Mohanty <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/campvanilla/boxshadows/issues"
},
"homepage": "https://github.com/campvanilla/boxshadows#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@types/gtag.js": "0.0.3",
"@types/lodash": "^4.14.150",
"@types/react": "^16.9.26",
"@types/react-color": "^3.0.1",
"@types/react-dom": "^16.9.5",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.0",
"@types/webpack-env": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"copy-webpack-plugin": "^6.0.1",
"core-js": "^3.6.5",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"favicons-webpack-plugin": "^3.0.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"lodash": "^4.17.19",
"preact": "^10.4.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-color": "^2.18.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2",
"styled-components": "^5.0.1",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^3.0.0",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {}
}