-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.37 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "tic-tac-toe",
"version": "2.0.6",
"description": "tic-tac-toe game",
"main": "src/index.js",
"scripts": {
"build": "webpack --mode production",
"start": "webpack serve",
"test": "jest --watchAll=false",
"test-watch": "jest --watchAll=true",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jestanoff/tic-tac-toe.git"
},
"keywords": [
"tic-tac-toe"
],
"author": "Stefan Dzhestanov",
"license": "ISC",
"homepage": "https://github.com/jestanoff/tic-tac-toe#readme",
"engines": {
"node": ">=15.0.0"
},
"moduleRoots": [
"src"
],
"dependencies": {
"@types/react": "18.0.8",
"@types/react-dom": "18.0.2",
"classnames": "^2.3.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-transition-group": "^4.4.1",
"uuid": "^3.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"autoprefixer": "^10.2.3",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.1",
"css-modules-typescript-loader": "^4.0.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-perf": "^3.3.0",
"eslint-plugin-testing-library": "^5.3.1",
"file-loader": "^6.2.0",
"jest": "^27.4.1",
"jest-canvas-mock": "^2.4.0",
"jest-css-modules-transform": "^4.3.0",
"jsdom": "^9.12.0",
"mini-css-extract-plugin": "^1.3.5",
"mock-css-modules": "^1.0.0",
"postcss": "^8.2.4",
"postcss-load-config": "^3.0.0",
"postcss-loader": "^4.2.0",
"postcss-modules-values": "^4.0.0",
"postcss-nested": "^5.0.3",
"precss": "^4.0.0",
"prettier": "^2.2.1",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"source-map-loader": "^2.0.0",
"style-loader": "^2.0.0",
"ts-jest": "^27.1.4",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"url-loader": "^4.1.1",
"webpack": "^5.18.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
}
}