-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.84 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
{
"name": "react-stack",
"version": "1.0.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx karma start ./node_modules/@stackr23/webpack/karma",
"lint": "eslint --fix --ext \".js,.jsx,.ts,.tsx\" . --quiet --format pretty && prettier **/*.{css,scss,md,json} --write",
"clean": "rimraf build",
"build": "npm run clean && webpack -p --mode production --env production",
"start": "webpack-dev-server --open --mode development --env development_core",
"prepare": "npx husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stackr23/react-stack.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stackr23/react-stack/issues"
},
"homepage": "https://github.com/stackr23/react-stack#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test && npm run build"
}
},
"lint-staged": {
"*.{css,scss,json,md,yml}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix --quiet"
]
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-transform-react-constant-elements": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@stackr23/config-eslint": "^2.0.4",
"@stackr23/webpack": "^2.1.1",
"eslint": "^7.27.0",
"husky": "^7.0.2",
"karma": "^6.3.4",
"lint-staged": "^11.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tslib": "^2.3.0"
},
"private": true,
"publishConfig": {
"access": "public",
"tag": "latest"
}
}