-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
121 lines (121 loc) · 3.7 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
{
"name": "nino-cli",
"version": "1.4.6",
"description": "A cli for Nino, just some simple config of webpack",
"keywords": [
"cli"
],
"homepage": "https://github.com/orzyyyy/nino-cli#readme",
"bugs": {
"url": "https://github.com/orzyyyy/nino-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orzyyyy/nino-cli.git"
},
"license": "MIT",
"files": [
"dist",
"scripts",
".prettierrc",
".eslintrc.js",
".eslintignore"
],
"main": "./dist/index.js",
"bin": {
"nino": "./dist/entry/nino.js"
},
"scripts": {
"clean": "rimraf node_modules package-lock.json es lib dist",
"codecov": "npm test -- --coverage",
"lint": "eslint --ext .ts",
"lint-staged": "lint-staged",
"pre-test": "tsc src/jest/jest.ts && tsc src/jest/setup.ts && tsc src/jest/preprocessor.ts",
"prettier": "prettier -c --write '**/*.ts'",
"pub": "tsc && git push origin master && npm publish",
"sort": "npx sort-package-json",
"test": "npm run pre-test && tsc && jest --config ./src/jest/jest.js --no-cache --testPathPattern 'src'",
"tsc": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts}": [
"npm run prettier",
"npm run lint"
]
},
"dependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/plugin-proposal-export-namespace-from": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-proposal-private-property-in-object": "^7.15.4",
"@babel/plugin-syntax-decorators": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-member-expression-literals": "^7.7.4",
"@babel/plugin-transform-object-assign": "^7.7.4",
"@babel/plugin-transform-property-literals": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/plugin-transform-spread": "^7.7.4",
"@babel/plugin-transform-template-literals": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@babel/runtime": "^7.7.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.13.0",
"chalk": "^4.0.0",
"commander": "^8.0.0",
"copy-webpack-plugin": "^10.0.0",
"core-js": "^3.4.8",
"css-loader": "^6.0.0",
"date-fns": "^2.8.1",
"enzyme": "^3.10.0",
"enzyme-to-json": "^3.4.3",
"eslint": "^8.0.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^4.0.0",
"fs-extra": "^10.0.0",
"html-webpack-plugin": "^5.0.0",
"jest": "^27.0.0",
"lint-staged": "^12.0.0",
"prettier": "^2.0.0",
"source-map-loader": "^3.0.0",
"style-loader": "^3.0.0",
"toho-log-plugin": "^1.1.0",
"ts-loader": "^9.0.0",
"url-loader": "^4.1.1",
"walk": "^2.3.14",
"webpack": "^5.43.0",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.8.0",
"webpack-merge": "^5.0.0",
"webpackbar": "^5.0.0"
},
"devDependencies": {
"@types/enzyme": "^3.10.4",
"@types/fs-extra": "^9.0.0",
"@types/glob": "^7.2.0",
"@types/jest": "^27.0.0",
"@types/prettier": "^2.0.0",
"@types/walk": "^2.3.0",
"@types/webpack": "^5.28.0",
"husky": "^7.0.0",
"mockdate": "^3.0.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"rimraf": "^3.0.0",
"typescript": "^4.5.2"
}
}