-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "@blackbox-vision/next-google-dfp",
"version": "0.4.1",
"description": "Integrate Google DFP in next.js with ease",
"author": "JonatanSalas <[email protected]>",
"homepage": "https://github.com/BlackBoxVision/next-google-dfp#readme",
"license": "MIT",
"scripts": {
"clean": "rimraf pkg",
"publish": "pika publish",
"build": "npm run clean && pika build",
"version": "npm run build"
},
"bugs": {
"url": "https://github.com/BlackBoxVision/next-google-dfp/issues"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"@types/react": "^16.9.48",
"@types/react-dom": "^17.0.8",
"next": "^11.0.1",
"react": "^16.13.1",
"rimraf": "^3.0.2",
"typescript": "^3.9.7"
},
"peerDependencies": {
"react": ">=16.11.0",
"next": ">=11.0.0"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
}
}