-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 KB
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
{
"name": "react-2048",
"version": "1.0.0",
"description": "2048 Game written in Typescript using React/Redux and NextJS",
"repository": "https://github.com/Mystaken/react-2048",
"keywords": [
"react",
"redux",
"typescript",
"nextjs",
"animejs",
"antd"
],
"scripts": {
"start": "next -p 8080",
"export": "next export",
"build": "next build",
"deploy": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll && git add out/ && git commit -m \"Deploy Github page.\" && git subtree push --prefix out origin gh-pages"
},
"author": "Tianxiang Gao <kgaotianx@gmail.com>",
"license": "ISC",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"animejs": "^3.1.0",
"antd": "^3.20.7",
"next": "^9.0.5",
"null-loader": "^3.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-swipeable": "^5.4.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@types/animejs": "^2.0.2",
"@types/node": "^12.6.8",
"@types/react": "^16.8.23",
"@types/react-redux": "^7.1.1",
"@types/styled-components": "^4.1.18",
"babel-plugin-import": "^1.12.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-styled-components": "^1.10.6",
"typescript": "^3.5.3"
}
}