-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "sudoku",
"version": "0.0.1",
"description": "A number puzzle",
"main": "index.jsx",
"scripts": {
"start": "webpack serve --mode=development",
"test": "jest --watchAll",
"build": "npx webpack --mode=production"
},
"devDependencies": {
"@babel/core": "^7.13.0",
"@babel/preset-env": "^7.13.0",
"@babel/preset-react": "^7.12.13",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.19",
"babel-loader": "^8.2.2",
"css-loader": "^5.1.0",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-plugin-context": "^2.9.0",
"style-loader": "^2.0.0",
"webpack": "^5.24.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"keywords": [
"sudoku",
"puzzle"
],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/styled": "^11.1.5",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}