-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "xstate-minesweeper",
"version": "1.0.0",
"author": "Khanh Le",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "10.x",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "6.x",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"prettier": "^2.0.4"
},
"dependencies": {
"@chakra-ui/core": "^0.7.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@types/node": "12",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@xstate/react": "^0.8.1",
"emotion-theming": "^10.0.27",
"immer": "^6.0.3",
"next": "^9.3.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "^3.8.3",
"xstate": "^4.9.0"
}
}