-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 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
38
39
40
{
"name": "puzzle-solver",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/dmarchuk/puzzle-solver",
"author": "Daniel Marchuk",
"license": "MIT",
"scripts": {
"integrate": "yarn lint && yarn test && yarn build",
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint --ext .ts src/"
},
"dependencies": {
"dlxlib": "^1.0.3",
"jsdom": "^16.5.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"canvas": "^2.6.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"jest": "^25.4.0",
"jest-canvas-mock": "^2.2.0",
"ts-jest": "^25.4.0",
"ts-loader": "^7.0.1",
"typescript": "^3.8.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-concat-plugin": "^3.0.0",
"webpack-dev-server": "^3.9.0"
}
}