-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "webpack-babel-template",
"version": "1.0.0",
"main": "dist/bundle.js",
"author": "chakri68",
"repository": {
"url": "git+https://github.com/chakri68/pixel-drawing-sim.git"
},
"homepage": "http://chakri68.github.io/pixel-drawing-sim",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack-dev-server",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@types/figlet": "^1.5.6",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"gh-pages": "^6.0.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"node-sass": "^9.0.0",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@codemirror/commands": "^6.2.5",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/state": "^6.2.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.18.0",
"chalk": "^5.3.0",
"codemirror": "^6.0.1",
"figlet": "^1.6.0"
}
}