-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.23 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
{
"name": "trains",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:nvma/trains.git",
"author": "nvma <[email protected]>",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development --hot --progress --color --port 4000 --host 0.0.0.0",
"build": "webpack -p --progress --colors",
"deploy": "yarn build && push-dir --dir=dist --branch=gh-pages && git checkout master"
},
"dependencies": {
"@types/lodash": "^4.14.149",
"konva": "^4.2.0",
"lodash": "^4.17.21",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@types/webpack": "^4.41.7",
"@types/webpack-env": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "^1.19.1",
"push-dir": "^0.4.1",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3"
}
}