-
Notifications
You must be signed in to change notification settings - Fork 458
/
package.json
76 lines (76 loc) · 2.27 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
{
"name": "react-2048",
"version": "0.0.0",
"private": true,
"description": "A React clone of 2048 game",
"main": "src/index.js",
"scripts": {
"build": "webpack --config scripts/webpack.prod.js",
"start": "webpack serve --config scripts/webpack.dev.js",
"start:pwa": "npm run build && http-server dist --port=3000",
"lint": "eslint . --ext .js,.ts,.tsx --max-warnings 0",
"format": "prettier --write .",
"tsc": "tsc -p tsconfig.json --noEmit",
"deploy": "npm run build && gh-pages -d dist",
"prepare": "husky install"
},
"keywords": [
"React",
"2048",
"Typescript",
"style-components",
"pwa"
],
"author": "Kai Wang",
"repository": {
"type": "git",
"url": "https://github.com/kwrush/react-2048.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kwrush/react-2048/issues"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.0",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.12",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^2.0.3",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.3.2",
"http-server": "^14.1.0",
"husky": "^7.0.0",
"prettier": "^2.3.2",
"ts-node": "^10.2.0",
"typescript": "^4.3.5",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0",
"workbox-webpack-plugin": "^6.2.4"
}
}