-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.55 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": "antistatique-frontend",
"version": "1.7.0",
"description": "Antistatique opinionated frontend development configuration (linters, tests,...)",
"main": ".bin/init.js",
"bin": {
"antistatique-frontend": ".bin/init.js",
"init": ".bin/init.js",
"next": ".bin/next.js"
},
"type": "module",
"repository": "https://github.com/antistatique/frontend-development-configuration",
"author": "Antistatique",
"license": "MIT",
"chan": {
"release-prefix": ""
},
"scripts": {
"lint:js": "eslint --ext js,jsx,ts,tsx ./ --max-warnings=0",
"lint:css": "stylelint 'playground/src/**/*.css'",
"fix:js": "eslint --ext js,jsx,ts,tsx ./ --max-warnings=0 --fix",
"fix:css": "stylelint --fix 'playground/src/**/*.css'",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"jest:start": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watchAll",
"jest:run": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"dev": "cd playground && node_modules/.bin/next dev",
"start": "cd playground && node_modules/.bin/next start",
"build": "cd playground && node_modules/.bin/next build",
"storybook:start": "cd playground && storybook dev --no-open -p 6006",
"storybook:build": "cd playground && storybook build",
"postinstall": "husky",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@swc/core": "^1.4.0",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-eslint": "^10.1.0",
"cypress": "^13.6.4",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwind": "^0.2.1",
"husky": "^9.0.10",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"typescript": "5.3.3"
},
"dependencies": {
"fs-extra": "^11.2.0",
"inquirer": "^9.2.14",
"ora": "^8.0.1"
}
}