-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.98 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
{
"name": "console-patterns",
"description": "Collection of snippets to render logical patterns",
"version": "2.2.1",
"repository": "[email protected]:grikomsn/console-patterns.git",
"author": "Griko Nibras <[email protected]>",
"scripts": {
"build": "yarn build:dir && yarn build:favicons && next build",
"build:dir": "mkdirp ./public/icons/",
"build:favicons": "node generate-favicons",
"clean": "rimraf .next \"./public/!(social.png)\"",
"develop": "next dev",
"format": "concurrently \"yarn:format:*\"",
"format:index": "prettier --write \"*.{js,json,md}\"",
"format:patterns": "prettier --write \"patterns/*.js\"",
"format:src": "prettier --write \"src/**/*.{css,js,ts,tsx}\"",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"type-check": "tsc --noEmit",
"validate": "yarn lint && yarn type-check"
},
"dependencies": {
"@sindresorhus/class-names": "^1.1.0",
"copee": "^1.0.6",
"favicons": "^6.2.0",
"next": "^9.5.3",
"next-seo": "^4.7.3",
"prism-react-renderer": "^1.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-live": "^2.2.2",
"tailwindcss": "^1.8.6"
},
"devDependencies": {
"@types/node": "^14.6.4",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"concurrently": "^5.3.0",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"mkdirp": "^1.0.4",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
},
"license": "MIT"
}