forked from jfpalchak/text-adventure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "text-adventure",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/jfpalchak/text-adventure.git"
},
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --mode=development",
"start": "npm run build && webpack-dev-server --open --mode=development",
"lint": "eslint src --ext .js",
"test": "jest --coverage --colors",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jfpalchak/text-adventure/issues"
},
"homepage": "https://github.com/jfpalchak/text-adventure#readme",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"dotenv-webpack": "^2.0.0",
"eslint": "^8.18.0",
"eslint-webpack-plugin": "^2.7.0",
"file-loader": "^6.2.0",
"gh-pages": "^6.0.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.2",
"jest": "^24.9.0",
"style-loader": "^1.3.0",
"webpack": "4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "3.11.3"
},
"dependencies": {
"bootstrap": "^5.2.3"
}
}