-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.7 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
{
"name": "nft-thumbnail-generator",
"private": true,
"license": "MIT",
"author": {
"name": "Toniq-Labs",
"url": "https://github.com/Toniq-Labs"
},
"workspaces": [
"packages/proof-of-concept/*",
"packages/*"
],
"scripts": {
"debug": "concurrently --colors --kill-others --success first -c auto --names browser-runner,frontend \"npm run debug --workspace @toniq-labs/thumb-gen-poc-browser-runner\" \"npm start --workspace @toniq-labs/thumb-gen-poc-frontend\"",
"format": "virmator format",
"start": "npm start --workspace @toniq-labs/nft-thumbnail-generator-browser-runner",
"test:all": "concurrently --colors --kill-others-on-fail -c auto --names types,spelling,format,deps \"npm run test:types\" \"npm run test:spelling\" \"npm run test:format\" \"npm run test:deps\"",
"test:deps": "virmator deps check",
"test:format": "virmator format check",
"test:spelling": "virmator spellcheck",
"test:types": "mono-vir for-each-async tsc --noEmit"
},
"devDependencies": {
"cspell": "^8.0.0",
"dependency-cruiser": "^15.5.0",
"esbuild": "^0.19.8",
"mono-vir": "^0.1.7",
"npm-check-updates": "~16.12.3",
"prettier": "^3.1.0",
"prettier-plugin-interpolated-html-tags": "^1.0.3",
"prettier-plugin-jsdoc": "^1.1.1",
"prettier-plugin-multiline-arrays": "^3.0.1",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-packagejson": "^2.4.6",
"prettier-plugin-sort-json": "^3.1.0",
"prettier-plugin-toml": "^2.0.1",
"virmator": "^11.1.4"
},
"overrides": {
"typescript": "5.2.2"
}
}