-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "github-usernames",
"private": true,
"version": "1.0.0",
"type": "module",
"author": "Szymon Tondowski",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build-us": "tsx processes/build.ts",
"dev-us": "nodemon --watch src/user-script --exec npm run build-us",
"dev-us-server": "tsx processes/dev-script.ts",
"preview": "vite preview",
"test": "vitest",
"lint": "eslint src --ext .js",
"lint:fix": "eslint src --ext .js --fix"
},
"eslintConfig": {
"extends": [
"airbnb-base"
],
"rules": {
"no-undef": 0,
"no-unused-vars": 0,
"strict": 0,
"no-restricted-globals": 0,
"import/prefer-default-export": 0,
"arrow-body-style": 0,
"no-param-reassign": [
2,
{
"props": false
}
]
},
"parserOptions": {
"ecmaVersion": 2021
}
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@testing-library/dom": "^10.3.1",
"@testing-library/jest-dom": "^6.4.6",
"@types/express": "^4.17.21",
"chalk": "^5.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"express": "^4.19.2",
"globals": "^15.8.0",
"happy-dom": "^14.12.3",
"jsdom": "^24.1.0",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0",
"vite": "^5.3.1",
"vitest": "^2.0.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
}
}