-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "classicgames",
"version": "1.0.0",
"description": "recreating classic games",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx webpack --watch",
"devserver": "webpack-dev-server --open --progress"
},
"author": "youngseo-kangg",
"license": "ISC",
"dependencies": {
"core-js": "^3.21.1",
"css-loader": "^6.6.0",
"dotenv": "^16.0.0",
"dotenv-webpack": "^7.1.0",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"webpack-cli": "^4.9.2"
},
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.4",
"@babel/preset-env": "^7.16.11",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^4.0.0",
"file-loader": "^6.2.0",
"webpack": "^5.69.1",
"webpack-dev-server": "^4.7.4"
},
"eslintConfig": {
"parserOptions": {
"parser": "babel-eslint",
"sourceType": "module",
"allowImportExportEverywhere": true
}
}
}