-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 943 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": "a11ycrwlr",
"version": "0.0.1",
"description": "",
"main": "main.js",
"scripts": {
"dev": "concurrently \"npm run watch-compile\" \"npm run watch-dev\"",
"watch-compile": "swc src -w --out-dir dist",
"watch-dev": "nodemon --watch \"dist/**/*\" -e js ./dist/main.js",
"build": "swc src -d dist",
"start": "NODE_ENV=production node dist/main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.37.1",
"@swc/core": "^1.3.82",
"@swc/helpers": "^0.5.1",
"@types/node": "^20.5.9",
"regenerator-runtime": "^0.14.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@axe-core/playwright": "^4.7.3",
"@swc/cli": "^0.1.62",
"axe-core": "^4.7.2",
"chokidar": "^3.5.3",
"concurrently": "^8.2.1",
"dotenv": "^16.3.1",
"just-kebab-case": "^4.2.0",
"nodemon": "^3.0.1",
"playwright": "^1.37.1"
}
}