-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "cuberdle",
"version": "1.0.0",
"private": true,
"repository": "https://github.com/CapOfCave/cuberdle.git",
"author": "CapOfCave <[email protected]>",
"license": "MIT",
"dependencies": {
"@netlify/functions": "^1.0.0",
"mongodb": "^4.6.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@types/node": "^14.18.17",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"node-sass": "^7.0.1",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"dev": "webpack serve --mode development --open"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}