-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "mastermind",
"version": "1.0.0",
"description": "",
"main": "dist/index",
"scripts": {
"start": "webpack-dev-server --open --mode development --port 8081",
"build": "rm -rf dist/ && npm run type && webpack --mode production",
"type": "tsc",
"format": "prettier --write .",
"lint": "eslint src/**/*.ts test/**/*.ts --fix",
"test": "jest",
"prepare": "husky install",
"docs": "jsdoc -c jsdoc.json"
},
"keywords": [
"mastermind",
"game"
],
"author": "Romain Guarinoni",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@babel/register": "^7.16.9",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-loader": "^8.2.3",
"better-docs": "^2.7.2",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.5.1",
"eslint": "^8.8.0",
"eslint-plugin-prettier": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"live-server": "^1.2.1",
"mini-css-extract-plugin": "^2.5.3",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3"
},
"dependencies": {
"babel-jest": "^27.4.6",
"jsdoc": "^3.6.10"
}
}