forked from annisokay97/markdownRepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.64 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
{
"name": "u-documentation-frontend",
"version": "0.0.1",
"author": "uStudio Front-end Crew",
"repository": "github:uStudioCompany/u-documentation-frontend",
"scripts": {
"copyLogo": "cpy logo.svg src/assets/icons/ --rename=logo.inline.svg && git add src/assets/icons/logo.inline.svg",
"copyRobotsFile": "cpy public/robots.txt dist",
"dev": "rm -fr ./.cache dist && parcel public/index.html",
"build": "rm -fr ./.cache dist && yarn run copyLogo && parcel build public/index.html --no-autoinstall --no-source-maps --public-url /markdownRepo && yarn copyRobotsFile",
"deploy": "yarn build && gh-pages -b gh-pages --dotfiles=true -d dist"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.1",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@svgr/parcel-plugin-svgr": "^5.4.0",
"@types/node": "^13.13.4",
"@types/papaparse": "^5.0.3",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.5",
"@types/react-helmet": "^5.0.15",
"@types/react-router-dom": "^5.1.4",
"@types/react-syntax-highlighter": "^11.0.4",
"@types/styled-components": "^5.0.1",
"axios": "^0.19.2",
"babel-plugin-styled-components": "^1.10.7",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-typescript": "^7.0.0-alpha.19",
"cpy-cli": "^3.1.1",
"framer-motion": "^1.10.3",
"papaparse": "^5.2.0",
"parcel-bundler": "^1.12.4",
"react": "^16.8",
"react-csv-to-table": "^0.0.4",
"react-dom": "^16.8",
"react-helmet": "^6.0.0",
"react-markdown": "^4.3.1",
"react-router-dom": "^5.1.2",
"regenerator-runtime": "^0.13.5",
"sass": "^1.26.5",
"styled-components": "^5.0.1",
"typescript": "^3.8.3",
"ustudio-ui": "^1.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^3.0.0",
"gh-pages": "^2.2.0",
"husky": "^4.2.1",
"lint-staged": "^10.1.7",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"prettier": "^2.0.5"
},
"lint-staged": {
".": [
"yarn lint",
"yarn format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT"
}