-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.84 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
60
{
"name": "minesweeper",
"description": "Minesweeper",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/scarletcs/minesweeper.git",
"author": "scarletcs <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"watch": "webpack --watch --mode=development",
"electron": "electron ./dist/main/index.js",
"test": "jest",
"start": "yarn build:dev && nf start"
},
"dependencies": {
"classnames": "^2.3.2",
"electron": "^23.0.0",
"luxon": "^3.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.0",
"@types/luxon": "^3.2.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@ungap/structured-clone": "^1.0.1",
"@webpack-cli/generators": "^3.0.1",
"babel-jest": "^29.4.2",
"babel-loader": "^9.1.2",
"babel-plugin-named-asset-import": "^0.3.8",
"babel-preset-react-app": "^10.0.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"electron-reload": "^2.0.0-alpha.1",
"eslint": "^8.33.0",
"foreman": "^3.0.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"jest-resolve": "^29.4.2",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^2.8.4",
"react-app-polyfill": "^3.0.0",
"sass": "^1.58.0",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}