-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 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
{
"name": "security-rules-test-site",
"version": "1.0.0",
"description": "This is a simple site hosted on heroku that implements strict CSP and security rules to see how what is the actual required config for new tracing scripts.",
"main": "index.js",
"scripts": {
"preinstall": "npx npm-force-resolutions",
"start:frontend": "parcel ./client/index.js",
"build": "rimraf ./dist && parcel build ./client/index.js --out-dir ./dist",
"dev": "nodemon ./server.js",
"start": "node ./server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/veracity/security-rules-test-site.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/veracity/security-rules-test-site/issues"
},
"resolutions": {
"node-forge": "^0.10.0"
},
"homepage": "https://github.com/veracity/security-rules-test-site#readme",
"dependencies": {
"express": "^4.17.1",
"helmet": "^4.2.0",
"mustache": "^4.0.1",
"npm-force-resolutions": "0.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"nodemon": "^2.0.6",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.2"
}
}