-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.39 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
{
"name": "react-pomodoro",
"version": "1.0.3",
"description": "",
"source": "src/index.html",
"scripts": {
"start": "parcel ./src/index.html --open",
"build": "npx parcel build ./src/index.html",
"prebuild": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yves852/react-pomodoro.git"
},
"author": "Yves Thirion",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yves852/react-pomodoro/issues"
},
"homepage": "https://github.com/Yves852/react-pomodoro#readme",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-modal": "^3.14.3",
"sweetalert2": "^11.1.9",
"use-interval": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@becode/eslint-config": "^0.12.1",
"@parcel/transformer-sass": "^2.0.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-unicorn": "^37.0.1",
"husky": "^4.3.8",
"lint-staged": "^11.2.3",
"parcel": "^2.0.0",
"prettier": "^2.4.1"
},
"lint-staged": {
"*.json": [
"npx prettier --write"
],
"*.js": [
"npx eslint --fix --cache"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
}
}