-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.13 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
{
"name": "frontend-starter-toolkit",
"version": "0.0.26",
"repository": "https://github.com/saranshkataria/frontend-starter-toolkit.git",
"author": "saranshkataria <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --env.mode development --hot",
"prod": "webpack --env.mode production",
"debug": "node --inspect-brk ./node_modules/webpack/bin/webpack.js",
"prod:debug": "npm run debug -- --env.mode production",
"dev:debug": "npm run debug -- --env.mode development",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"validate": "npm-run-all --parallel lint test check-types",
"check-types": "tsc"
},
"dependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"babel-loader": "^8.0.5",
"fs-extra": "^7.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1"
},
"devDependencies": {
"@babel/polyfill": "^7.4.3",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.0",
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"@types/react-test-renderer": "^16.8.1",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"fork-ts-checker-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"react-hot-loader": "^4.8.3",
"react-test-renderer": "^16.8.6",
"typescript": "^3.4.2",
"webpack-dev-server": "^3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md,css,html,jsx,ts,tsx}": [
"prettier --write",
"git add"
]
},
"bin": {
"frontend-starter-toolkit": "./scripts/index.js"
}
}