forked from freesewing/freesewing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.96 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "root",
"private": true,
"description": "FreeSewing is an open source platform for made-to-measure sewing patterns",
"keywords": [
"sewing",
"parametric design",
"made-to-measure"
],
"author": "Joost De Cock <[email protected]> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
"license": "MIT",
"scripts": {
"new": "node --experimental-json-modules --no-warnings scripts/add-software.mjs",
"?": "node scripts/help.mjs",
"tips": "node scripts/help.mjs",
"lab": "cd sites/lab && yarn start",
"lab-debug": "cd sites/lab && yarn start-debug",
"kickstart": "npx yarn install && yarn prepare && yarn tips",
"kickstart:windows": "npx yarn install && yarn prepare && yarn tips",
"cleanall": "lerna run clean",
"test": "lerna run test",
"e2e": "lerna run e2e",
"prettier": "npx prettier --write 'config/*' 'config/**/*' 'packages/**/src/*.mjs' 'packages/i18n/src/locales/**/*.*' 'packages/**/tests/*.mjs'",
"reconfigure": "all-contributors generate && node --experimental-json-modules --no-warnings scripts/reconfigure.mjs",
"sitebuildconfigure": "SITEBUILD=1 node --experimental-json-modules --no-warnings scripts/reconfigure.mjs",
"prerelease": "lerna version --no-git-tag-version --no-push && yarn reconfigure && yarn buildall",
"buildall": "lerna run build:all",
"build": "yarn buildall",
"wbuild": "lerna run wbuild:all",
"testall": "node scripts/testall.js",
"lint": "LINTER=1 lerna run --no-bail lint -- ",
"qa": "yarn qa:prettier && yarn qa:lint",
"qa:prettier": "npx prettier",
"qa:lint": "npx eslint",
"release": "lerna exec --no-bail -- npm publish",
"postrelease": "git add . && git commit -m ':bookmark: v$npm_package_version' && git tag -a v$npm_package_version -m ':bookmark: FreeSewing v$npm_package_version'",
"ship": "lerna exec --no-bail -- npm publish",
"bump": "git add . && git commit -m 'chore: Reconfigure packages'",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"famadd": "all-contributors add",
"famgen": "all-contributors generate",
"checkdocs": "remark markdown --quiet --frail",
"strapi:translate": "node scripts/strapi-en-to-other.mjs",
"fixdocs": "remark markdown --quiet --frail --output",
"wbuildall": "lerna run wbuildall",
"prepare": "husky && yarn buildall"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freesewing/freesewing.git"
},
"bugs": {
"url": "https://github.com/freesewing/freesewing/issues"
},
"prettier": "@freesewing/prettier-config",
"lint-staged": {
"*": [
"npx prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"all-contributors-cli": "^6.26.1",
"axios": "^1.5.1",
"chalk": "^4.1.0",
"codecov": "^3.8.3",
"cross-env": "^7.0.2",
"esbuild": "^0.21.0",
"esbuild-plugin-yaml": "^0.0.1",
"eslint": "^8.23.1",
"eslint-plugin-jsonc": "^2.4.0",
"eslint-plugin-markdown": "^5.0.0",
"eslint-plugin-mongo": "^1.0.5",
"eslint-plugin-yaml": "^0.5.0",
"husky": "^9.0.10",
"js-yaml": "^4.0.0",
"lerna": "^8.0.0",
"lint-staged": "^15.0.1",
"mocha": "^10.0.0",
"mustache": "^4.0.1",
"nyc": "^15.1.0",
"prettier": "^3.0.0",
"pretty-quick": "^4.0.0",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"rimraf": "^5.0.0",
"standard": "^17.0.0"
},
"workspaces": [
"designs/*",
"packages/*",
"plugins/*",
"sites/*"
],
"version": "0.0.0",
"dependencies": {
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@babel/preset-react": "^7.22.15",
"c8": "^9.1.0",
"eslint-config-next": "^14.0.1",
"glob": "^10.3.10",
"rehype-format": "^5.0.0",
"yarn": "^1.22.19"
},
"engines": {
"node": ">= 18.17.0 <22"
},
"packageManager": "[email protected]"
}