-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.6 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
{
"name": "magnet-sgsi",
"description": "A base for a django project",
"main": "index.js",
"scripts": {
"start": "vite serve",
"build": "vite build --manifest \"${VITE_MANIFEST:-manifest.json}\"",
"prepare": "[ \"$NODE_ENV\" = production ] && exit 0; husky install",
"lint": "eslint '**/*.ts' && stylelint '**/*.{css,scss}'",
"lint:fix": "eslint '**/*.ts' --fix && stylelint '**/*.{css,scss}' --fix",
"preinstall": "scripts/assert-npm-inside-container.sh",
"prestart": "scripts/assert-npm-inside-container.sh"
},
"author": "Magnet S.p.A. - magnet.cl",
"license": "MIT",
"devDependencies": {
"@types/bootstrap": "^5.2.6",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^3.2.5",
"prettier-plugin-django": "^0.5.9",
"stylelint": "^14.16.1",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.7.0",
"typescript": "5.0.x"
},
"dependencies": {
"@vitejs/plugin-react": "^4.1.0",
"bootstrap": "^5.3.0",
"choices.js": "^10.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^4.4.9"
}
}