-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.25 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "tugas.ku",
"description": "Tugas.ku: kemudahan kelola jadwal & tugas",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start:prod": "webpack --config webpack.prod.js",
"start:dev": "webpack-dev-server --config webpack.dev.js",
"lint:check": "npx eslint /src",
"lint:fix": "npx eslint /src --fix",
"serve": "http-server ./dist",
"serve:prod": "npm run start:prod && npm run serve",
"e2e": "codeceptjs run --steps"
},
"keywords": [
"Tugas.ku",
"Task Management App",
"Schedule Management App",
"Task & Schedule Management App",
"Schedule & Task Management App"
],
"author": "C23-M4014",
"license": "ISC",
"repository": {
"url": "https://github.com/hawariMuflihMunte/Tugas.ku.git"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"codeceptjs": "^3.4.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.4",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslint": "^8.41.0",
"eslint-config-google": "^0.14.0",
"html-webpack-plugin": "^5.5.1",
"jasmine-ajax": "^4.0.0",
"jasmine-core": "^5.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.23",
"postcss-loader": "^7.3.0",
"postcss-preset-env": "^8.4.1",
"puppeteer": "^20.4.0",
"sass": "^1.62.1",
"sass-loader": "^13.3.0",
"style-loader": "^3.3.3",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"webpack-merge": "^5.9.0",
"workbox-cacheable-response": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4",
"workbox-webpack-plugin": "^6.5.4"
},
"dependencies": {
"@popperjs/core": "^2.11.7",
"bootstrap": "^5.2.3",
"http-server": "^14.1.1",
"lodash": "^4.17.21",
"material-symbols": "^0.5.5",
"pwa-asset-generator": "^6.3.1",
"regenerator-runtime": "^0.13.11",
"sweetalert2": "^11.7.11",
"workbox-window": "^6.5.4"
}
}