forked from aniftyco/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.23 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
{
"private": true,
"author": {
"name": "Nifty Development, LLC",
"email": "[email protected]",
"url": "https://aniftyco.com"
},
"contributors": [
{
"name": "Josh Manders",
"url": "https://twitter.com/joshmanders"
}
],
"scripts": {
"start": "lerna run build && lerna run start"
},
"workspaces": [
"docs/",
"packages/*"
],
"engines": {
"npm": ">=v8.15.0",
"node": ">=16.17.0"
},
"eslintConfig": {
"extends": "nifty/react",
"ignorePatterns": [
"**/*.js",
"**/*.jsx"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"overrides": [
{
"files": "*.yaml",
"options": {
"singleQuote": false
}
}
]
},
"devDependencies": {
"@types/node": "^16.18.11",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"eslint": "^8.32.0",
"eslint-config-nifty": "^3.3.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"lerna": "^6.4.1",
"prettier": "^2.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^4.1.2",
"type-fest": "^3.5.3",
"typescript": "^4.9.4"
}
}