-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.88 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
{
"name": "icons_app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:static": "yarn build && next export -o out/",
"start": "next start",
"eslint": "eslint . --ext .ts,.tsx --fix",
"stylelint": "stylelint \"**/*.(ts|tsx)\" --fix",
"lint": "yarn compile && yarn eslint && yarn stylelint",
"deploy": "yarn build:static && gh-pages -d out -r https://$GH_TOKEN@github.com/iconsbox/app"
},
"dependencies": {
"@iconbox/iconly": "^2.0.1",
"framer-motion": "^4.1.3",
"gh-pages": "^3.1.0",
"next": "10.0.3",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-image": "^4.0.3",
"react-modal": "^3.12.1",
"react-smooth-marquee": "^1.0.0",
"react-syntax-highlighter": "^15.4.3",
"react-tabs": "^3.2.2",
"recoil": "^0.1.2",
"styled-components": "^5.2.1",
"styled-css-grid": "^1.2.1",
"swr": "^0.3.9",
"use-breakpoint": "^1.1.6",
"use-debounce": "^6.0.1"
},
"devDependencies": {
"@types/node": "^14.14.14",
"@types/react": "^17.0.0",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-plugin-styled-components": "^1.12.0",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^4.2"
},
"resolutions": {
"styled-components": "^5"
}
}