-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 964 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
{
"name": "wordle-html-css",
"version": "1.0.0",
"description": "",
"main": "script.js",
"scripts": {
"build": "webpack",
"start": "npm run build && python -m http.server 8000",
"e2e": "npm run build && cypress run --browser electron",
"e2e-all": "npm run build && for browser in chrome electron firefox; do echo \"Testing $browser\"; cypress run --browser $browser; done"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@testing-library/cypress": "^10.0.1",
"@types/chai": "^4.3.6",
"@types/cypress": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"cypress": "^13.2.0",
"eslint": "^8.51.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"nodemon": "^3.0.1",
"prettier-plugin-organize-imports": "^3.2.3",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}