-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "wordle",
"version": "1.1.0",
"scripts": {
"start": "webpack serve --config webpack/dev.js",
"lint": "eslint . --ext .ts",
"test": "jest --collectCoverage",
"build": "webpack --config webpack/build.js"
},
"repository": "git+https://github.com/im6/wordle.git",
"author": "im6",
"license": "ISC",
"bugs": {
"url": "https://github.com/im6/wordle/issues"
},
"homepage": "https://github.com/im6/wordle#readme",
"dependencies": {
"@types/animejs": "^3.1.8",
"@types/jest": "^29.0.3",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"animejs": "^3.2.1",
"css-loader": "^6.7.1",
"dom-confetti": "^0.2.2",
"eslint": "^8.23.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"rxjs": "^7.5.6",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}