-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "whoisit",
"version": "1.0.0",
"description": "Random nickname & avatar Generator",
"main": "/src/index.js",
"type": "module",
"scripts": {
"start": "webpack serve --mode=production",
"start:dev": "webpack serve --mode=development",
"build": "webpack --mode=production",
"build:dev": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Team-Jurassic/whoisit.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Team-Jurassic/whoisit/issues"
},
"homepage": "https://github.com/Team-Jurassic/whoisit#readme",
"dependencies": {
"core-js": "^3.22.8",
"downloadjs": "^1.4.7",
"html-to-image": "^1.9.0",
"html2canvas": "^1.4.1",
"regenerator-runtime": "^0.13.9"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.1"
}
}