-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "terraria-checklist",
"version": "2.0.0",
"description": "Development stack for the Terraria Checklist",
"private": true,
"scripts": {
"start": "npm run clean && webpack --mode development --watch",
"build": "npm run clean && webpack --mode production",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ewauq/terraria-checklist.git"
},
"keywords": [
"terraria",
"checklist",
"help",
"progression",
"walkthrough",
"tracking",
"bosses",
"items",
"weapons",
"collection"
],
"author": "ewauq",
"license": "MIT",
"bugs": {
"url": "https://github.com/ewauq/terraria-checklist/issues"
},
"homepage": "https://github.com/ewauq/terraria-checklist#readme",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.1",
"eslint-plugin-unicorn": "^52.0.0",
"html-webpack-plugin": "^5.6.0",
"prettier-eslint": "^16.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.5",
"sass": "^1.75.0",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}