-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
{
"name": "tetris",
"version": "1.0.0",
"description": "A simple tetris game in react",
"main": "src/index.tsx",
"scripts": {
"start": "webpack serve --mode development --open",
"build": "webpack --mode production",
"test": "jest --coverage --collectCoverageFrom='./src/**'",
"lint": "eslint src/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickDrew/tetris.git"
},
"keywords": [
"tetris",
"react",
"typescript"
],
"author": "Nicholas Drew",
"license": "MIT",
"bugs": {
"url": "https://github.com/NickDrew/tetris/issues"
},
"homepage": "https://github.com/NickDrew/tetris#readme",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"css-loader": "^6.7.4",
"eslint": "^8.41.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"typescript-plugin-css-modules": "^5.0.1",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0"
}
}