-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
59
60
61
{
"name": "kanban",
"version": "1.0.0",
"description": "Kanban with Deadline set and Pomodoro timer",
"main": "app.js",
"scripts": {
"start": "webpack serve --mode development --open",
"build": "webpack --mode production",
"lint": "eslint src/**/*.js || true",
"prettify": "prettier --write src/**/*.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mux-mux/kanban.git"
},
"author": "",
"license": "ISC",
"homepage": "https://github.com/mux-mux/kanban#readme",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.6.4",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.29.1",
"css-loader": "^6.8.1",
"dotenv-webpack": "^8.1.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"img-loader": "^4.0.0",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"prettier": "^3.0.3",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"jest": {
"testEnvironment": "jsdom",
"testMatch": [
"**/__tests__/*.test.js"
],
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"dependencies": {
"focus-trap": "^7.5.4",
"ical.js": "^2.1.0"
}
}