-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 977 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 977 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
28
29
30
31
32
33
{
"name": "test",
"version": "0.0.1",
"description": "",
"author": "",
"license": "ISC",
"devDependencies": {
"@swc/core": "1.3.35",
"cors": "2.8.5",
"eslint-plugin-jest": "^27.1.6",
"glob": "^8.0.3",
"jest": "29.4.1",
"jest-puppeteer": "7.0.0",
"puppeteer": "19.6.3",
"purgecss-webpack-plugin": "5.0.0"
},
"types": "../../types/index.d.ts",
"overrides": {
"webpack": "^5.0.0",
"terser": "npm:@swc/core"
},
"resolutions": {
"terser": "npm:@swc/core"
},
"scripts": {
"start": "node ../scripts/index.js start --port=6969 --name=test --disk -sc",
"build": "node --enable-source-maps ../scripts/index.js build --name=test -sc",
"clear": "rm -rf ../node_modules ../package-lock.json node_modules .development .production package-lock.json",
"setup": "cd .. && npm install && cd tests && npm install",
"test": "npm run build && jest --runInBand",
"script": "node src/scripts/run.js"
}
}