forked from HipsterBrown/real-world-app-xstate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.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
{
"name": "realworld-xstate-react",
"version": "1.0.0",
"description": "An implementation of the Real World app with XState & React",
"main": "index.html",
"scripts": {
"build": "NODE_ENV=production parcel build index.html",
"start": "parcel index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HipsterBrown/realworld-starter-kit.git"
},
"keywords": [
"xstate",
"react"
],
"author": "HipsterBrown",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/HipsterBrown/realworld-starter-kit/issues"
},
"homepage": "https://github.com/HipsterBrown/realworld-starter-kit#readme",
"dependencies": {
"@xstate/inspect": "^0.4.1",
"@xstate/react": "^1.2.2",
"dompurify": "^2.2.6",
"formik": "^2.2.6",
"history": "^4.10.1",
"marked": "^2.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"xstate": "^4.16.0",
"yup": "^0.32.8"
},
"devDependencies": {
"@types/dompurify": "^2.2.1",
"@types/marked": "^1.2.2",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.7",
"@types/yup": "^0.29.11",
"parcel-bundler": "^1.12.4",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
}
}