This repository has been archived by the owner on Nov 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.7 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "suft-frontend",
"version": "1.0.0",
"main": "src/index.tsx",
"license": "GPL-3.0",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint src/**/*.ts[x]",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swsuft/suft-frontend.git"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-brands-svg-icons": "^5.12.1",
"@fortawesome/free-regular-svg-icons": "^5.12.1",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.7",
"@toast-ui/editor-plugin-code-syntax-highlight": "^1.0.0",
"@toast-ui/editor-plugin-color-syntax": "^1.0.1",
"@toast-ui/react-editor": "^2.3.1",
"apollo-boost": "^0.4.9",
"apollo-link-context": "^1.0.20",
"axios": "^0.19.2",
"cogo-toast": "^4.2.3",
"graphql": "^15.3.0",
"react": "^16.8.6",
"react-apollo": "^3.1.5",
"react-dom": "^16.8.6",
"react-helmet": "^6.1.0",
"react-modal": "^3.11.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.1.2",
"react-table": "^7.0.5",
"styled-components": "^4.2.0",
"underscore": "^1.10.2"
},
"devDependencies": {
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-backgrounds": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/preset-create-react-app": "^2.1.1",
"@storybook/react": "^5.3.18",
"@types/highlightjs": "^9.12.0",
"@types/jest": "24.0.13",
"@types/node": "12.0.2",
"@types/react": "16.8.17",
"@types/react-dom": "16.8.4",
"@types/react-helmet": "^6.1.0",
"@types/react-modal": "^3.10.4",
"@types/react-router-dom": "^5.1.3",
"@types/react-table": "^7.0.17",
"@types/styled-components": "^4.4.3",
"@types/underscore": "^1.10.0",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.13.0",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.2.0",
"prettier": "^1.18.2",
"typescript": "3.6.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}