-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.57 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
49
{
"name": "yahtzee-game",
"version": "1.0.0",
"description": "Web implementation of Yahtzee Game",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack.dev.js --mode none",
"build": "webpack --config webpack.prod.js --mode production",
"test": "jest",
"lint": "eslint . --ext .ts && stylelint 'src/**/*.scss'",
"deploy": "webpack --config webpack.prod.js --mode production && gh-pages -d dist"
},
"author": "mrozelek",
"license": "MIT",
"devDependencies": {
"@types/eslint": "^7",
"@types/fabric": "^4",
"@types/gh-pages": "^3",
"@types/mini-css-extract-plugin": "^1",
"@types/node": "^14.14.22",
"@types/webpack-dev-server": "^3",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"autoprefixer": "^10.2.3",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.18.0",
"fabric": "^4.3.1",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.5.1",
"jest": "^26.6.3",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^1.3.4",
"node-sass": "^5.0.0",
"postcss-loader": "^4.2.0",
"sass-loader": "^10.1.1",
"serve": "^11.3.2",
"style-loader": "^2.0.0",
"stylelint": "^13.9.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
},
"repository": "https://github.com/ruljin/CodersCamp2020.Project.TypeScript.YahtzeeGame"
}