-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.18 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
{
"name": "tomate",
"version": "0.1.0",
"description": "A pomodoro timer.",
"main": "index.html",
"scripts": {
"lint": "eslint ./js/",
"lint-strict": "eslint ./js/ --max-warnings 0",
"dev": "webpack-dev-server --mode development ./js/pomodoro.js --open",
"build": "webpack --mode production ./js/pomodoro.js"
},
"engines": {
"npm": "NO LONGER USED - Please use yarn instead."
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbeatrizmagalhaes/tomate.git"
},
"author": "mbeatrizmagalhaes",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbeatrizmagalhaes/tomate/issues"
},
"homepage": "https://github.com/mbeatrizmagalhaes/tomate#readme",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"babel-loader": "^8.0.6",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^1.7.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}