-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 919 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 919 Bytes
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
{
"name": "chrome-tasks-notes",
"version": "1.1.0",
"description": "Simple tasklist",
"main": "main.js",
"directories": {
"doc": "doc"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "vite build && cp -rv manifest.json popup.html popup.js _locales dist/",
"pack": "npm run build && ./deployment/pack.sh"
},
"keywords": [
"todo",
"task",
"chrome"
],
"author": "gorhawk",
"license": "MIT",
"dependencies": {
"keycode-js": "0.0.4",
"lodash": "^4.17.21",
"react": "^16.4.1",
"react-beautiful-dnd": "^4.0.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.6",
"redux": "4.x",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@types/react": "^19.1.2",
"@types/react-redux": "^7.1.34",
"prettier": "3.x",
"sass-embedded": "^1.86.3",
"vite": "^6.2.5"
}
}