-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"name": "snake",
"version": "1.0.0",
"description": "Classic Snake game developed with HTML5 Canvas, Typescript and RxJS.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --progress --color --mode development --config webpack.config.development.js",
"clean": "rimraf ./dist/*",
"build": "webpack --color --mode production --config webpack.config.production.js",
"test": "jest --cache"
},
"author": "Caglar Alkis",
"license": "ISC",
"devDependencies": {
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"css-loader": "^3.5.3",
"eslint": "^7.1.0",
"fork-ts-checker-notifier-webpack-plugin": "^2.0.0",
"fork-ts-checker-webpack-plugin": "^4.1.6",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"style-loader": "^1.2.1",
"ts-jest": "^26.1.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"rxjs": "^6.5.5"
}
}