-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.16 KB
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
40
41
{
"name": "wordle-client",
"version": "0.0.1",
"description": "Wordle",
"main": "",
"scripts": {
"build": "webpack --config src/webpack.config.js",
"lint": "comfy-tslint --no-mutation src/*.{ts,tsx}",
"test": "ts-mocha -p tsconfig.json src/**/*_test.{ts,tsx} --require ignore-styles",
"start": "webpack-dev-server --config src/webpack.config.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/mocha": "^5.2.7",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"assert": "^2.0.0",
"clean-webpack-plugin": "^4.0.0",
"comfy-tslint": "^0.1.9",
"copy-webpack-plugin": "^5.0.1",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"ignore-styles": "^5.0.1",
"mini-css-extract-plugin": "^2.6.1",
"mocha": "^10.1.0",
"progress-bar-webpack-plugin": "^2.1.0",
"ts-loader": "^9.4.1",
"ts-mocha": "^10.0.0",
"typescript": "^4.8.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}