-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "react-pomodoro",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint --fix --cache src",
"build": "parcel build src/index.html --public-url ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlejoVE/react-pomodoro.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlejoVE/react-pomodoro/issues"
},
"homepage": "https://github.com/AlejoVE/react-pomodoro#readme",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-modal": "^3.13.1"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@becode/eslint-config": "^0.12.1",
"babel-core": "^6.26.3",
"eslint": "^7.24.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-unicorn": "^30.0.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"parcel-bundler": "^1.12.5",
"prettier": "^2.2.1",
"sass": "^1.32.11"
},
"lint-staged": {
"*.json": [
"npx prettier --write"
],
"*.js": [
"npx eslint --fix --cache"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
}
}