-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "poka",
"version": "0.0.1",
"description": "Pomodoro meets Kanban, for individual and team task management",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged",
"prettier": "prettier",
"build": "webpack",
"start": "NODE_ENV=development webpack -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chingu-voyage3/bears-32.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/chingu-voyage3/bears-32/issues"
},
"homepage": "https://github.com/chingu-voyage3/bears-32#readme",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-stage-0": "^7.0.0",
"babel-loader": "^8.0.6",
"chrome-dev-webpack-plugin": "^0.3.3",
"css-loader": "^3.4.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"style-loader": "^1.1.1",
"webpack": "^4.41.4",
"webpack-chrome-extension-reloader": "^1.3.0"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"date-fns": "^2.8.1",
"jquery": "^3.4.1",
"jquery-ui": "^1.12.1",
"jquery-ui-bundle": "^1.12.1",
"jquery-ui-dist": "^1.12.1",
"uuid": "^3.3.3"
}
}