-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "mini-xmind",
"version": "1.4.2",
"description": "A tool to make mind-mapping easier",
"license": "MIT",
"files": [
"lib",
"dist",
"es"
],
"sideEffects": [
"*.css"
],
"main": "lib",
"module": "es",
"scripts": {
"build": "nino koei",
"clean": "rimraf node_modules package-lock.json dist es lib && npm i",
"codecov": "npm test -- --coverage",
"compile": "tsc --outDir es && tsc --outDir lib && nino compile",
"deploy": "node scripts/publish",
"dist": "nino dist",
"lint": "nino eslint",
"lint-staged": "lint-staged",
"prettier": "nino prettier",
"pub": "npm run build && npm run compile && git push origin master && npm publish",
"sort": "npx sort-package-json",
"start": "nino go",
"test": "nino test",
"test:es": "cross-env LIB_DIR=es nino test --path='src' --no-cache -u",
"test:lib": "cross-env LIB_DIR=lib nino test --path='src' --no-cache -u",
"tsc": "tsc"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.{ts,tsx}": [
"npm run prettier",
"npm run lint"
]
},
"dependencies": {
"core-js": "^3.4.1",
"react-draggable": "^4.4.0"
},
"devDependencies": {
"@types/classnames": "^2.2.9",
"@types/enzyme": "^3.10.3",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"cross-env": "^7.0.0",
"gh-pages": "^5.0.0",
"lint-staged": "^13.0.0",
"mockdate": "^3.0.2",
"nino-cli": "^1.4.6",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"typescript": "~4.7.2"
}
}