-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (61 loc) · 1.5 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
{
"name": "next-strict-csp",
"description": "Hash-based Strict CSP for Next.js",
"version": "1.0.1",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc --outDir dist/esm",
"build:cjs": "tsc --module commonjs --outDir dist/cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/guydumais/next-strict-csp.git"
},
"keywords": [
"nextjs",
"next.js",
"next",
"plugin",
"strict csp",
"hash-based csp",
"content security policy",
"single page app security",
"website security"
],
"author": {
"name": "Guy Dumais",
"email": "[email protected]",
"website": "https://guydumais.digital"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/guydumais/next-strict-csp/issues"
},
"homepage": "https://github.com/guydumais/next-strict-csp",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/next": "^9.0.0",
"@types/node": "^16.7.10",
"@types/react": "^17.0.11",
"next": "^11.1.2",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.3.4"
},
"peerDependencies": {
"next": "*",
"react": "*",
"react-dom": "*"
}
}