-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
71 lines (71 loc) · 1.97 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
{
"name": "react-facebook-pixel",
"version": "1.0.4",
"description": "Pixel Kit for React",
"main": "dist/fb-pixel.js",
"types": "./types/index.d.ts",
"scripts": {
"start": "export NODE_ENV=development&& webpack-dev-server --config webpack.config.dev.js",
"bundle": "export NODE_ENV=production&& webpack -p --config webpack.config.dist.js",
"lint": "eslint --ignore-path .gitignore --fix",
"lint:staged": "lint-staged",
"clean": "rm -rf node_modules",
"prettify": "prettier --write"
},
"repository": "git://github.com/zsajjad/react-facebook-pixel.git",
"keywords": [
"react",
"reactjs",
"react-component",
"angular",
"vue",
"pixel",
"facebook-pixel"
],
"author": {
"name": "Zain Sajjad",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/zsajjad/react-facebook-pixel/issues"
},
"homepage": "https://github.com/zsajjad/react-facebook-pixel",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-transform-react-constant-elements": "^7.7.4",
"@babel/plugin-transform-react-inline-elements": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"autoprefixer": "9.7.3",
"babel-eslint": "10.0.3",
"babel-loader": "^8.0.6",
"eslint": "6.7.2",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"webpack": "4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "3.9.0"
},
"peerDependencies": {},
"lint-staged": {
"*.js": [
"yarn lint",
"git add --force"
],
"*.json": [
"yarn prettify",
"git add --force"
]
},
"pre-commit": "lint:staged"
}