-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.21 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.21 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "mdeck",
"version": "0.1.0",
"private": true,
"engines": {
"npm": ">=6.14.7",
"node": ">=12.18.3"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"deploy": "yarn build; gh-pages -d public",
"start": "cross-env NODE_ENV=development webpack-dev-server",
"eslint": "eslint --ext js,ts,tsx",
"lint": "yarn eslint src",
"lint:fix": "yarn eslint --fix src",
"format": "prettier --write src/**/*.ts{,x}",
"typecheck": "tsc --noEmit",
"test": "cross-env NODE_ENV=test jest --coverage",
"test:watch": "cross-env NODE_ENV=test jest --watch"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn eslint --fix"
],
"*.{md,json}": [
"prettier --write"
],
"*.js": "eslint --cache --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn typecheck"
}
},
"dependencies": {
"@marp-team/marpit": "^1.6.2",
"cross-env": "^7.0.2",
"file-saver": "^2.0.2",
"gh-pages": "^3.1.0",
"highlight.js": "^10.2.0",
"html-to-react": "^1.4.3",
"lodash": "^4.17.20",
"markdown-it-task-lists": "^2.1.1",
"ramda": "^0.27.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "^5.2.0",
"sanitize.css": "^12.0.1",
"screenfull": "^5.0.2",
"smooth-scroll-into-view-if-needed": "^1.1.28",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@babel/core": "7.11.4",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-object-rest-spread": "7.11.0",
"@babel/plugin-transform-runtime": "7.11.0",
"@babel/preset-env": "7.11.0",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@svgr/webpack": "^5.4.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@testing-library/react-hooks": "^3.4.1",
"@testing-library/user-event": "^12.1.3",
"@types/jest": "^26.0.10",
"@types/react": "16.9.48",
"@types/react-dom": "16.9.8",
"@types/react-test-renderer": "^16.9.3",
"@types/screenfull": "^4.1.0",
"@types/styled-components": "^5.1.2",
"@types/testing-library__jest-dom": "^5.9.2",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"babel-loader": "8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "4.2.2",
"eslint": "7.7.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "^23.20.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",
"fork-ts-checker-webpack-plugin": "^5.1.0",
"html-webpack-plugin": "4.3.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest-cli": "^26.4.2",
"jest-styled-components": "^7.0.3",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"react-test-renderer": "^16.13.1",
"style-loader": "1.2.1",
"ts-loader": "^8.0.3",
"typescript": "4.0.2",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0",
"worker-loader": "^3.0.2"
}
}