-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.68 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
{
"name": "presentify",
"version": "1.1.0",
"private": true,
"author": "Ernest Teluk",
"scripts": {
"build": "tsc --build --incremental tsconfig.build.json && npm --prefix packages/create-presentify run build",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint:code": "eslint --cache --cache-location node_modules/.cache/eslint --cache-strategy content --ext ts,tsx .",
"lint:types": "npm run build",
"lint": "npm run lint:code && npm run lint:types"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --config .prettierrc.js --write",
"eslint --fix"
]
},
"dependencies": {
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@mdx-js/react": "^2.3.0",
"@mdx-js/rollup": "2.3.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/lodash": "4.14.192",
"@types/prompts": "2.4.4",
"@types/react": "18.0.32",
"@types/react-dom": "18.0.11",
"@types/styled-components": "5.1.26",
"@vitejs/plugin-react": "3.1.0",
"@vitest/coverage-istanbul": "0.29.3",
"eslint-config-vazco": "7.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "3.5.3",
"husky": "8.0.0",
"jsdom": "21.1.1",
"kolorist": "1.7.0",
"lint-staged": "13.2.0",
"lodash": "4.17.21",
"mermaid": "10.1.0",
"minimist": "1.2.8",
"parse-numeric-range": "1.3.0",
"prism-react-renderer": "1.3.5",
"prompts": "2.4.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"remark-mdx-code-meta": "2.0.0",
"unbuild": "1.2.1",
"vite": "4.2.1",
"vitest": "0.29.2"
}
}