forked from BinaryStudioAcademy/thread-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.28 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
{
"name": "threadjs",
"private": true,
"engines": {
"node": ">=16 <17",
"npm": ">=8 <9"
},
"scripts": {
"install:shared": "cd shared && npm install",
"install:client": "cd client && npm install",
"install:server": "cd server && npm install",
"install:all": "npm install && npm run install:shared && npm run install:client && npm run install:server",
"lint:editorconfig": "editorconfig-checker",
"lint:fs": "ls-lint",
"lint:shared:js": "cd shared && npm run lint:js",
"lint:shared": "cd shared && npm run lint",
"lint:client:css": "cd client && npm run lint:css",
"lint:client:js": "cd client && npm run lint:js",
"lint:client": "cd client && npm run lint",
"lint:server:js": "cd server && npm run lint:js",
"lint:server": "cd server && npm run lint",
"lint": "npm run lint:editorconfig && npm run lint:fs && npm run lint:shared && npm run lint:client && npm run lint:server"
},
"devDependencies": {
"@ls-lint/ls-lint": "1.11.0",
"editorconfig-checker": "4.0.2",
"eslint": "8.15.0",
"eslint-plugin-import": "2.26.0",
"lint-staged": "12.4.1",
"simple-git-hooks": "2.7.0",
"stylelint": "14.8.2",
"stylelint-config-standard": "25.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}