forked from CodersCampTeam/Chess-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "chess-game",
"version": "1.0.0",
"description": "",
"main": "dist/bundle.js",
"scripts": {
"clean": "rimraf .cache && rimraf coverage && rimraf dist && rimraf node_modules",
"prebuild": "rimraf dist",
"start": "webpack serve --open --config webpack.development.config.js",
"build": "webpack --config webpack.production.config.js",
"format": "prettier --write \"src/**/*.ts\" \"styles/**/*.scss\" \"test/**/*.js\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mfrydrychowicz/Chess-game.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mfrydrychowicz/Chess-game/issues"
},
"homepage": "https://github.com/mfrydrychowicz/Chess-game#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.22",
"@types/webpack": "^4.41.26",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-jest": "^26.6.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.0.0-alpha.14",
"jest": "^26.6.3",
"lodash": "^4.17.20",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.18.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": "test[.](js|ts)",
"coverageDirectory": "../coverage",
"collectCoverageFrom": [
"./src/**"
]
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.2",
"copy-webpack-plugin": "^7.0.0"
}
}