-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.88 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.88 KB
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
{
"name": "create-react-linters",
"version": "1.0.1",
"description": "setup all linters you like for your react app in 1 minute 🚀",
"main": "dist/index.js",
"bin": "dist/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"start": "nodemon --watch src/** --ext ts --exec npm run esbuild-runner",
"esbuild-runner": "esr src/index.ts",
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist --extensions \".ts\"",
"postbuild": "copyfiles --exclude \"**/*.ts\" --all --flat src/configurations/* dist/configurations",
"prerelease": "npm run build",
"release": "np --no-tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MomenSherif/create-react-linters.git"
},
"keywords": [
"react",
"eslint",
"prettier",
"stylelint",
"commitlint",
"commitizen",
"husky",
"linters",
"editorconfig"
],
"author": "Momen Sherif",
"license": "ISC",
"bugs": {
"url": "https://github.com/MomenSherif/create-react-linters/issues"
},
"homepage": "https://github.com/MomenSherif/create-react-linters#readme",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"@npmcli/package-json": "^1.0.1",
"ansi-colors": "^4.1.1",
"enquirer": "^2.3.6",
"fs-extra": "^10.0.0",
"pretty-ms": "^7.0.1"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.10",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.8",
"babel-plugin-module-resolver": "^4.1.0",
"copyfiles": "^2.4.1",
"esbuild-runner": "^2.2.1",
"nodemon": "^2.0.15",
"np": "^7.6.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
}
}