-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.95 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
{
"name": "@arslivinski/minesweeper",
"description": "Minesweeper made in React, just to have fun! :)",
"version": "1.0.0-alpha.0",
"private": true,
"license": "ISC",
"scripts": {
"clean": "rimraf dist",
"precopy": "npm run clean",
"copy": "cpy '**/*' '!index.html' '../dist/' --cwd=public --parents",
"prebuild": "npm run copy",
"build": "webpack --env=production",
"prestart": "npm run clean",
"start": "webpack serve --env=development --progress",
"lint": "eslint ./",
"lint:fix": "eslint --fix ./"
},
"devDependencies": {
"@arslivinski/eslint-config": "^1.0.0-alpha.1",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"babel-loader": "^8.2.2",
"cpy-cli": "^3.1.1",
"css-loader": "^5.0.1",
"eslint": "^7.18.0",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.1",
"husky": "^4.3.8",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"author": {
"name": "Anderson Roberto Slivinski",
"url": "https://github.com/arslivinski"
},
"homepage": "https://github.com/arslivinski/minesweeper#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/arslivinski/minesweeper.git"
},
"bugs": {
"url": "https://github.com/arslivinski/minesweeper/issues"
},
"keywords": [
"react",
"game",
"minesweeper"
],
"dependencies": {
"clsx": "^1.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}