-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "base-figma-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"clean": "rm data/*.json && rm public/frames/*.{json,png}"
},
"dependencies": {
"async-retry": "^1.3.1",
"baseui": "^9.105.0",
"image-size": "^0.9.3",
"next": "^10.0.2-canary.19",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styletron-engine-monolithic": "^0.0.3",
"styletron-react": "^5.2.7",
"tinykeys": "^1.1.0"
},
"devDependencies": {
"@types/node": "^14.0.13",
"@types/react": "^16.9.38",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "2.0.5",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix"
}
}