-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.48 KB
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
{
"name": "fixation",
"version": "0.0.1",
"type": "module",
"engines": {
"node": "20.x"
},
"scripts": {
"start": "node app.js",
"build": "webpack -c webpack.prod.cjs",
"build:watch": "webpack -w -c webpack.dev.cjs"
},
"dependencies": {
"@material/button": "^14.0.0",
"@material/checkbox": "^14.0.0",
"@material/drawer": "^14.0.0",
"@material/form-field": "^14.0.0",
"@material/icon-button": "^14.0.0",
"@material/layout-grid": "^14.0.0",
"@material/linear-progress": "^14.0.0",
"@material/list": "^14.0.0",
"@material/ripple": "^14.0.0",
"@material/snackbar": "^14.0.0",
"@material/switch": "^14.0.0",
"@material/theme": "^14.0.0",
"@material/top-app-bar": "^14.0.0",
"@material/typography": "^14.0.0",
"express": "^4.17.1",
"luxon": "^1.23.0",
"pixelmatch": "^5.2.0",
"pwa-helpers": "^0.9.1",
"socket.io-client": "^3.0.4"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/plugin-transform-object-assign": "^7.24.1",
"@babel/preset-env": "^7.24.3",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"css-loader": "^6.10.0",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"lit-html": "^3.1.2",
"postcss-loader": "^8.1.1",
"sass": "^1.72.0",
"sass-loader": "^14.1.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"browserslist": [
"last 1 Chrome version"
]
}