This repository was archived by the owner on Oct 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.79 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.79 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
{
"name": "create-react-app-webpack",
"version": "0.1.5",
"description": "An initial set up for react and webpack using single command",
"bin": "./bin/create-react-app-webpack.js",
"scripts": {
"build": "rm -rf public && tsc && grunt build",
"dev": "run-p watch:ts watch:template",
"watch:ts": "tsc -w",
"watch:template": "grunt",
"lint": "eslint src/* --ext .ts",
"lint:fix": "eslint --fix src/* --ext .ts",
"release": "npm publish public/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrijshikhar/create-react-app-webpack.git"
},
"keywords": [
"React",
"Webpack"
],
"author": "Adrij Shikhar",
"license": "ISC",
"bugs": {
"url": "https://github.com/adrijshikhar/create-react-app-webpack/issues"
},
"homepage": "https://github.com/adrijshikhar/create-react-app-webpack#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@types/node": "^14.0.26",
"update-notifier": "^5.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.0",
"@types/update-notifier": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.7.0",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"grunt": "^1.2.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix --ext .ts"
]
}
}