-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "set-with-friends-solver",
"version": "1.0.0",
"description": "Solves the set game, copy paste in console to win at https://setwithfriends.com",
"main": "index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"prettier": "prettier --write ./**/*.ts",
"build:ts": "rm -rf ./build && tsc",
"build": "rm -rf ./build && tsc && rm -rf ./dist && webpack",
"start": "node ./build/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.4.1",
"prettier": "2.5.0",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hvihvi/set-with-friends-solver.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hvihvi/set-with-friends-solver/issues"
},
"homepage": "https://github.com/hvihvi/set-with-friends-solver#readme"
}