-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
48
{
"name": "console_game",
"version": "0.3.0",
"description": "",
"main": "src/index.ts",
"home": ".",
"scripts": {
"start": "webpack-dev-server --open --port 3000 --mode production",
"dev": "webpack-dev-server --open --port 3000 --mode development",
"build": "webpack --config webpack.config.js --mode production",
"build-dev": "webpack --config webpack.config.js --mode development",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NriotHrreion/console-game.git"
},
"author": "NriotHrreion",
"license": "MIT",
"bugs": {
"url": "https://github.com/NriotHrreion/console-game/issues"
},
"homepage": "https://github.com/NriotHrreion/console-game#readme",
"dependencies": {
"html-webpack-plugin": "^5.5.0",
"nriot-utils": "^0.1.2",
"webpack": "^5.72.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@types/jest": "^27.4.1",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"jest": "^27.5.1",
"jsdom": "^19.0.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
}
}