-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 2.99 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "black-jack",
"version": "0.1.0",
"description": "A Black Jack game made using React",
"repository": "https://github.com/PoQuatre/black-jack.git",
"author": {
"name": "PoQuatre",
"email": "leflem.mateo2002@gmail.com"
},
"contributors": [
{
"name": "Kar1004",
"email": "abderkaramoko@gmail.com"
},
{
"name": "Ismail51",
"email": "dassler-ben@hotmail.fr"
}
],
"license": "MIT",
"private": true,
"type": "module",
"main": "src/index.jsx",
"scripts": {
"dev": "vite",
"start": "vite",
"test": "mocha \"./src/**/*.spec.js\"",
"test:watch": "npm test -- --watch",
"build": "vite build",
"lint:stylelint": "stylelint --aei --ignore-path .gitignore \"src/**/*.css\"",
"lint:eslint": "eslint \"src/**/*.{js,jsx}\"",
"lint:prettier": "prettier --check \"**/*.{js,jsx,json,html,md,svg}\"",
"prepare": "husky install",
"commit": "cz"
},
"parcel-namer-rewrite": {
"chain": "@parcel/namer-default",
"rules": {
"(.+)\\.js": "./js/$1{.hash}.js",
"(.+)\\.css": "./css/$1{.hash}.css",
"(.+)\\.(png|jpe?g|webp|avif)": "./assets/$1{.hash}.$2"
}
},
"config": {
"commitizen": {
"path": "cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.cjs"
}
},
"lint-staged": {
"*.css": "stylelint --cache --fix",
"*.{js,jsx}": "eslint --cache --fix",
"*.{js,jsx,json,html,md,svg}": "prettier --write"
},
"mocha": {
"bail": true,
"parallel": true,
"node-option": [
"experimental-specifier-resolution=node"
]
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-react": "^7.16.7",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@vitejs/plugin-react": "^1.2.0",
"autoprefixer": "^10.4.2",
"chai": "^4.3.6",
"commitizen": "^4.2.4",
"commitlint-config-gitmoji": "^2.2.5",
"cz-customizable": "^5.5.0",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.5",
"mocha": "^9.2.2",
"postcss": "^8.4.8",
"postcss-import": "^14.0.2",
"postcss-modules": "^4.3.1",
"postcss-nested": "^5.0.6",
"postcss-url": "^10.1.3",
"prettier": "^2.5.1",
"stylelint": "^14.5.3",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-prettier": "^2.0.0",
"vite": "^2.8.6",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.1.0",
"vite-plugin-imagemin": "^0.6.1"
},
"dependencies": {
"modern-normalize": "^1.1.0",
"random": "^3.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.2"
}
}