-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
55 lines (55 loc) · 2.04 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
{
"name": "sticker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"workspaces": [
"client-config-app",
"website",
"manifest",
"official-stickers"
],
"scripts": {
"format": "yarn prettier --write && yarn eslint ./ --fix",
"format:check": "yarn prettier --check && yarn eslint ./",
"format:server": "dotnet format --severity info",
"client": "yarn workspace client-config-app run start",
"client:build": "yarn workspace client-config-app run build",
"client:test": "yarn workspace client-config-app run test",
"website": "yarn workspace website run start",
"website:build": "yarn workspace website run build",
"website:test": "yarn workspace website run test",
"manifest": "yarn workspace manifest run build",
"stickers": "yarn workspace official-stickers run build",
"test": "yarn client:test && yarn website:test",
"server": "dotnet watch --project server",
"server:run": "dotnet run --project server",
"server:build": "dotnet build server",
"eslint": "eslint --cache --max-warnings 0 --cache-location node_modules/.cache/ --ext .ts,.tsx",
"prettier": "prettier --cache \"**/*.{js,jsx,ts,tsx,json,css,scss,md,yml,html}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/NewFuture/my-stickers.git"
},
"author": "New Future",
"license": "MS-PC",
"bugs": {
"url": "https://github.com/NewFuture/my-stickers/issues"
},
"homepage": "https://github.com/NewFuture/my-stickers#readme",
"packageManager": "[email protected]",
"devDependencies": {
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"prettier": "^2.8.7",
"typescript": "^5.0.4"
},
"resolutions": {
"puppeteer": "^13.0.0",
"react-snap/mkdirp": "^0.5.6",
"sourcemapped-stacktrace-node/isomorphic-fetch": "^3.0.0"
}
}