-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 840 Bytes
/
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
{
"name": "third-party-impact",
"version": "1.0.0",
"description": "Analyzes third-party contribution to site speed",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon index.js",
"start": "NODE_ENV=production node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "@SimonHearne",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/simonhearne/third-party-impact.git"
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"fs": "0.0.1-security",
"fs-extra": "^5.0.0",
"url": "^0.11.0",
"webpagetest": "~0.3.9"
},
"devDependencies": {
"dotenv": "^5.0.1",
"nodemon": "^1.19.4"
},
"nodemonConfig": {
"ignore": [
"public/*"
]
}
}