-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.5 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "react-puzzles",
"version": "0.1.1",
"description": "",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"module": "esm/index.js",
"scripts": {
"commit": "git-cz",
"dev": "docz dev",
"start": "npm run dev",
"build:doc": "rimraf doc-site && docz build",
"preview:doc": "docz serve",
"build:types": "tsc -p tsconfig.build.json && cpr lib esm",
"clean": "rimraf lib esm dist",
"build": "npm run clean && npm run build:types && gulp",
"new": "plop --plopfile ./scripts/plopfile.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/classnames": "^2.3.1",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-transition-group": "^4.4.2",
"@umijs/fabric": "^2.6.2",
"commitizen": "^4.2.4",
"cpr": "^3.0.1",
"cz-conventional-changelog": "^3.3.0",
"docz": "^2.3.1",
"gatsby-plugin-less": "^5.8.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-babel": "^8.0.0",
"gulp-cssnano": "^2.1.3",
"gulp-less": "^5.0.0",
"husky": "^6.0.0",
"less": "^4.1.1",
"lint-staged": "^11.0.0",
"plop": "^2.7.4",
"prettier": "^2.3.1",
"prismjs": "^1.24.0",
"raw-loader": "^4.0.2",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-simple-code-editor": "^0.11.0",
"react-tooltip": "^4.2.21",
"react-use": "^17.2.4",
"rimraf": "^3.0.2",
"styled-components": "^5.3.0",
"through2": "^4.0.2",
"typescript": "^4.3.4"
},
"lint-staged": {
"components/**/*.ts?(x)": [
"prettier --write",
"eslint --fix",
"jest --bail --findRelatedTests",
"git add"
],
"components/**/*.less": ["stylelint --syntax less --fix", "git add"]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@babel/runtime": "^7.14.6",
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"react-transition-group": "^4.4.2"
}
}