-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 3.59 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "nes-design",
"version": "0.1.1-beta.1",
"description": "Game Style React UI Component Library",
"main": "lib/index.js",
"module": "es/index.js",
"unpkg": "dist/nes-design.min.js",
"typings": "types/index.d.ts",
"scripts": {
"test": "jest",
"docz:dev": "npm run docz:clean && docz dev ",
"docz:build": "docz build",
"docz:serve": "docz build && docz serve",
"docz:clean": "rimraf .docz && mkdir .docz && cpr static .docz/static",
"build": "gulp && npm run build:types",
"build:components": "gulp compileCDN",
"build:types": "tsc --declaration --emitDeclarationOnly && cpr types es && cpr types lib",
"lint": "eslint components --fix --ext .ts,.tsx ",
"pre-commit": "lint-staged",
"commit": "git-cz",
"release": "standard-version",
"release:beta": "standard-version --prerelease beta",
"release:rc": "standard-version --prerelease rc"
},
"keywords": [
"react",
"nes",
"ui-components",
"game-style",
"game"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"{components,theme}/**/*.{tsx,ts,jsx,js}": [
"eslint --fix"
]
},
"author": "TCYong",
"license": "MIT",
"homepage": "https://loo41.github.io/NES-design/",
"warehouse": "https://github.com/loo41/NES-design",
"dependencies": {
"classnames": "^2.3.1",
"rc-table": "^7.14.0",
"react-helmet": "^5.2.1",
"standard-version": "^9.3.0"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@rollup/plugin-babel": "^5.3.0",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.23",
"@types/sinon": "^10.0.0",
"@typescript-eslint/parser": "^4.22.1",
"commitizen": "^4.2.4",
"cpr": "^3.0.1",
"cz-conventional-changelog": "^3.3.0",
"docz": "^2.3.1",
"enzyme": "^3.11.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"gatsby-plugin-sass": "^3.2.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.3.0",
"gulp-cssnano": "^2.1.3",
"gulp-eslint": "^6.0.0",
"gulp-sass": "^4.1.0",
"husky": "^2.7.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"nes.css": ">=2.3.0",
"node-sass": "^4.14.1",
"prettier": "^1.19.1",
"prettier-eslint": "^12.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-highlight": "^0.14.0",
"rimraf": "^2.6.3",
"rollup": "^2.47.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"sass-resources-loader": "^2.2.1",
"sinon": "^10.0.0",
"tslib": "^2.1.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"nes.css": "^2.3.0",
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"sideEffects": [
"dist/*",
"esm/*.css",
"lib/*.css",
"*.scss"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"transformIgnorePatterns": [
"node_modules"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}