-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.62 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
{
"name": "scms",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "parcel src/index.html",
"build": "parcel build src/index.html",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o dist/storybook",
"translate": "i18next 'src/**/*.{ts,tsx}'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write .",
"format:check": "prettier --check .",
"postinstall": "typesync && yarn install --ignore-scripts",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@storybook/addon-actions": "^6.1.15",
"@storybook/addon-essentials": "^6.1.15",
"@storybook/addon-links": "^6.1.15",
"@storybook/react": "^6.1.15",
"@types/babel__core": "^7.1.12",
"@types/eslint": "^7.2.6",
"@types/markdown-it": "^12.0.1",
"@types/marked": "^2.0.0",
"@types/parcel-bundler": "^1.12.3",
"@types/prettier": "^2.2.0",
"@types/prismjs": "^1.16.3",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/wicg-file-system-access": "^2020.9.1",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-loader": "^8.2.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"marked": "^2.0.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-markdown-it": "^1.0.0",
"parcel-plugin-static-files-copy": "^2.6.0",
"prettier": "^2.2.1",
"scaffdog": "^1.0.0",
"ts-jest": "^26.5.1",
"typescript": "^4.1.3",
"typesync": "^0.8.0"
},
"dependencies": {
"@chakra-ui/react": "^1.3.2",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"bowser": "^2.11.0",
"date-fns": "^2.19.0",
"framer-motion": "^3.3.0",
"gray-matter": "^4.0.2",
"highlight.js": "^10.6.0",
"i18next": "^20.1.0",
"i18next-browser-languagedetector": "^6.1.0",
"i18next-parser": "^3.7.0",
"idb-keyval": "^5.0.2",
"inversify": "^5.0.5",
"markdown-it": "^12.0.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-error-boundary": "^3.1.1",
"react-hook-form": "^6.15.1",
"react-i18next": "^11.8.12",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"react-split-mde": "0.1.1",
"react-use": "^17.2.1",
"reflect-metadata": "^0.1.13",
"string-replace-async": "^2.0.0",
"wysiwyg.css": "^0.0.3"
}
}