-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.34 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
{
"name": "sudoku",
"version": "1.0.0",
"main": "index.tsx",
"author": "Ariqun",
"license": "ISC",
"description": "Sudoku game",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"browserslist": [
"last 1 version",
"> 1%"
],
"eslintConfig": {
"extends": [
"./eslintrc.js"
]
},
"dependencies": {
"clsx": "^2.0.0",
"mobx": "^6.10.1",
"mobx-react-lite": "^4.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/node": "^20.5.7",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"eslint": "^8.48.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-no-inline-styles": "^1.0.5",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss-scss": "^4.0.7",
"react-scripts": "^5.0.1",
"sass": "^1.66.1",
"stylelint": "^15.10.3",
"stylelint-declaration-strict-value": "^1.9.2",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.1.0",
"typescript": "^5.2.2",
"typescript-plugin-css-modules": "^5.0.1"
}
}