-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
{
"name": "chameleon-editor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "next",
"build": "next build",
"export": "next export",
"start": "next start",
"fix": "npm run fix:eslint && npm run fix:tsc && npm run fix:prettier",
"fix:eslint": "npx eslint --fix",
"fix:prettier": "npx prettier --write .",
"fix:tsc": "npx tsc --noEmit",
"prepare": "husky install"
},
"keywords": [],
"author": "Hiroyuki Yagihashi <[email protected]> (https://hiroy.uk)",
"license": "ISC",
"dependencies": {
"markdown-parser": "file:./markdown-parser/pkg",
"markmap-lib": "^0.11.6",
"markmap-view": "^0.2.6",
"next": "^10.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^3.1.0",
"@testing-library/dom": "^7.30.3",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.5",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@wasm-tool/wasm-pack-plugin": "^1.4.0",
"autoprefixer": "^10.2.5",
"babel-jest": "^26.6.3",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"postcss": "^8.2.10",
"prettier": "^2.2.1",
"tailwindcss": "^2.1.1",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx}": "bash -c tsc --noEmit",
"*.{js,ts,tsx,json,css,md}": "prettier --write"
}
}