-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.59 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
48
49
50
51
52
53
54
{
"name": "solitaire",
"version": "1.0.0",
"scripts": {
"start": "parcel ./src/index.html",
"build": "parcel build ./src/index.html",
"clean": "rm -rf dist/",
"lint": "eslint --ext .jsx,.js,.tsx,.ts src",
"lint-fix": "yarn run lint --fix"
},
"author": {
"name": "Jason Nickel",
"email": "hello@jasonnickel.de",
"url": "https://jasonnickel.de"
},
"license": "MIT",
"prettier": {
"singleQuote": false,
"semi": true,
"trailingComma": "all"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@mdx-js/react": "^2.1.1",
"@react-spring/web": "^9.4.5",
"immer": "^9.0.14",
"lodash": "^4.17.21",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"theme-ui": "^0.14.5",
"use-immer": "^0.7.0"
},
"devDependencies": {
"@parcel/config-default": "^2.5.0",
"@parcel/transformer-svg-react": "^2.5.0",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.16.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"parcel": "^2.5.0",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
},
"resolutions": {
"**/@types/react": "^18.0.5",
"**/@types/react-dom": "^18.0.1"
}
}