-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
76 lines (76 loc) · 2.01 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@spotify/lighthouse-audit-service",
"description": "Run, store, and view Lighthouse audits on all of your websites",
"author": "Paul Marbach",
"repository": {
"type": "git",
"url": "git+https://github.com/spotify/lighthouse-audit-service.git"
},
"license": "Apache-2.0",
"version": "0.0.0-development",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types",
"files": [
"types",
"cjs",
"esm"
],
"scripts": {
"dev": "nodemon",
"start": "node ./cjs/run.js",
"lint": "web-scripts lint",
"test": "web-scripts test",
"build": "web-scripts build && copyfiles --up 1 src/**/*.sql cjs && copyfiles --up 1 src/**/*.sql esm",
"format": "web-scripts format",
"commit": "web-scripts commit",
"release": "web-scripts release",
"prepare": "husky install"
},
"devDependencies": {
"@spotify/eslint-config-oss": "^1.0.2",
"@spotify/web-scripts": "^13.0.0",
"@types/async-retry": "^1.4.3",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^16.9.6",
"@types/pg": "^8.6.5",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@types/wait-on": "^5.3.1",
"copyfiles": "^2.4.1",
"dotenv": "^16.0.0",
"get-port": "^5.1.1",
"husky": "^7.0.4",
"node-duration": "^2.0.0",
"nodemon": "^2.0.15",
"supertest": "^6.2.2",
"testcontainers": "^8.6.1",
"ts-node": "^10.7.0"
},
"dependencies": {
"async-retry": "^1.3.3",
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.3",
"express-promise-router": "^4.1.1",
"lighthouse": "^9.5.0",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"pg": "^8.7.3",
"puppeteer": "^13.5.2",
"sql-template-strings": "^2.2.2",
"uuid": "^8.3.2",
"wait-on": "^6.0.1",
"winston": "^3.7.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.17"
}
}