-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 811 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 811 Bytes
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
{
"name": "lightningjs-benchmark",
"version": "0.1.0",
"description": "LightningJS Benchmark tool",
"main": "index.js",
"type": "module",
"scripts": {
"build": "node build.js",
"setup": "npm install && npm run build",
"setup:playwright": "npx playwright install",
"start": "concurrently --kill-others --success last \"npx http-server -c-1 ./dist/\" \"node index.js\"",
"start:official": "concurrently --kill-others --success last \"npx http-server -c-1 ./dist/\" \"node index.js --results\""
},
"author": "",
"license": "MIT",
"dependencies": {
"concurrently": "^8.2.2",
"http-server": "^14.1.1",
"playwright": "^1.58.1"
},
"devDependencies": {
"dotenv": "^16.4.5",
"shelljs": "^0.8.5",
"@types/node": "^20.14.11",
"jsdoc": "^4.0.3"
}
}