forked from freesewing/freesewing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 4.02 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
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "root",
"private": true,
"description": "FreeSewing is an open source platform for made-to-measure sewing patterns",
"keywords": [
"sewing",
"design",
"parametric design",
"sewing",
"fashion",
"made-to-measure"
],
"author": "Joost De Cock <[email protected]> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
"license": "MIT",
"scripts": {
"kickstart": "npx lerna bootstrap && npm run buildall",
"clean": "rimraf dist",
"test": "lerna run test",
"prettier": "npx prettier --write 'packages/**/src/*.js' 'packages/**/config/*.js' 'packages/**/example/src/*' 'packages/i18n/src/locales/**/*.*' 'packages/**/tests/*.js'",
"reconfigure": "all-contributors generate && node scripts/reconfigure.js",
"prerelease": "lerna version --no-git-tag-version --no-push && yarn reconfigure && yarn buildall",
"buildall": "lerna run cibuild_step1 && lerna run cibuild_step2",
"testall": "lerna run testci",
"release": "lerna exec -- 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freesewing/freesewing.git"
},
"bugs": {
"url": "https://github.com/freesewing/freesewing/issues"
},
"prettier": "@freesewing/prettier-config",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/node": "^7.14.2",
"@babel/plugin-external-helpers": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.5",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.6",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@svgr/rollup": "^6.2.0",
"all-contributors-cli": "^6.20.0",
"ava": "^4.0.1",
"axios": "0.21.2",
"babel-loader": "^8.1.0",
"bezier-js": "^5.1.0",
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"chalk": "^4.1.0",
"codecov": "^3.7.2",
"cross-env": "^7.0.2",
"deep-freeze": "^0.0.1",
"esm": "^3.2.25",
"file-saver": "^2.0.2",
"fs-extra": "^10.0.0",
"husky": "^7.0.2",
"js-yaml": "^4.0.0",
"lerna": "^4.0.0",
"mocha": "^9.1.1",
"mustache": "^4.0.1",
"netlify-cli": "^8.4.3",
"node-sass": "^7.0.1",
"nyc": "^15.1.0",
"open-color": "^1.7.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.0.0",
"prismjs": "^1.20.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^5.17.6",
"react-markdown": "^6.0.2",
"react-scripts": "^5.0.0",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.48.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-yaml": "^2.0.0",
"standard": "^16.0.3",
"tlds": "^1.221.1",
"typeface-raleway": "^1.1.13",
"typeface-roboto-condensed": "^1.1.13",
"uglifycss": "^0.0.29"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"version": "0.0.0",
"dependencies": {
"autoprefixer": "^10.4.0",
"handlebars": "^4.7.7",
"jsonfile": "^6.1.0",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.7"
}
}