forked from juanlatorre/react-facebook-pixel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.97 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.97 KB
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": "@juanlatorre/react-facebook-pixel",
"version": "1.0.5",
"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 --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": "zsajjad93@gmail.com"
},
"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.17.8",
"@babel/plugin-transform-react-constant-elements": "7.17.6",
"@babel/plugin-transform-react-inline-elements": "7.16.7",
"@babel/preset-env": "7.16.11",
"autoprefixer": "10.4.4",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.4",
"eslint": "8.12.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.4.0",
"lint-staged": "12.3.7",
"prettier": "2.6.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"webpack": "5.71.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.7.4"
},
"peerDependencies": {},
"lint-staged": {
"*.js": [
"yarn lint",
"git add --force"
],
"*.json": [
"yarn prettify",
"git add --force"
]
},
"pre-commit": "lint:staged"
}