-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
126 lines (126 loc) · 4.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
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
126
{
"name": "@naturacosmeticos/natds-commons",
"displayName": "Root",
"version": "0.0.0",
"description": "A monorepo containing Natura Design System multiplatform packages",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --scope=@naturacosmeticos/natds-themes --stream && lerna run build --ignore=@naturacosmeticos/natds-themes",
"changelog": "lerna-changelog",
"clean": "lerna clean",
"commit": "git cz",
"lerna:publish": "lerna exec -- 'npm publish || exit 0' && lerna publish --yes --no-push --force-publish ",
"lerna:publish:ci": "yarn lerna:publish",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"copy:html:assets": "mkdir -p build && cp -r packages/natds-themes/build/html/* build && cp -r packages/natds-token-search/dist/* build",
"html:build": "yarn build && yarn copy:html:assets",
"release:alpha": "yarn release --conventional-prerelease --no-commit-hooks",
"release:alpha-ci": "yarn release:alpha --yes",
"reinstall": "yarn clean && rm -rf ./node_modules && rm -rf yarn.lock && yarn install && yarn bootstrap",
"release": "lerna version --conventional-commits --no-private --force-publish",
"release:ci": "yarn release --conventional-graduate --create-release github --yes",
"start": "lerna run start --stream",
"start:icons": "lerna run html --scope=@naturacosmeticos/natds-icons",
"start:themes": "lerna run start --scope=@naturacosmeticos/natds-themes",
"test:unit": "jest --colors --collectCoverage --testPathIgnorePatterns=regression --testPathIgnorePatterns=inputs",
"build:icons": "yarn build --scope=@naturacosmeticos/natds-icons",
"regression": "jest --colors --testPathPattern=regression",
"test:inputs": "jest --colors --testPathPattern=inputs",
"test:regression": "yarn build:icons && concurrently -k --success first -n server,regression 'yarn start:icons' 'yarn regression'",
"test:regression:update": "concurrently -k --success first -n server,regression 'yarn start:icons' 'yarn regression -u'",
"test:regression:docker": "docker-compose run visual",
"test:regression:docker:update": "docker-compose run visual-update",
"test": "yarn test:unit && yarn test:inputs",
"test:ci": "yarn lint && yarn test",
"test:watch": "jest --watchAll --collectCoverage --testPathIgnorePatterns=regression --testPathIgnorePatterns=inputs",
"post:comment": "node -r sucrase/register ./scripts/post-pr-comment.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/natura-cosmeticos/natds-commons.git"
},
"keywords": [
"commons",
"natds",
"tokens",
"themes",
"icons"
],
"author": {
"name": "Natura Design System",
"email": "[email protected]"
},
"contributors": [
{
"name": "Ariel Flor",
"email": "[email protected]"
},
{
"name": "Jimmy Andrade",
"email": "[email protected]"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/natura-cosmeticos/natds-commons/issues"
},
"homepage": "https://github.com/natura-cosmeticos/natds-commons#readme",
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/node": "7.22.19",
"@babel/plugin-transform-regenerator": "7.22.10",
"@babel/plugin-transform-runtime": "7.23.2",
"@babel/preset-env": "7.23.2",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@naturacosmeticos/eslint-config-natds": "0.0.4",
"@naturacosmeticos/eslint-config-natura": "2.0.2",
"@rollup/plugin-image": "2.1.1",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "10.0.0",
"@rollup/plugin-typescript": "6.1.0",
"@rollup/plugin-url": "5.0.1",
"@testing-library/dom": "7.31.2",
"@babel/eslint-parser": "7.22.15",
"babel-jest": "26.6.3",
"commitizen": "4.3.0",
"concurrently": "5.3.0",
"core-js": "3.21.1",
"crypto-js": "4.1.1",
"cz-lerna-changelog": "2.0.3",
"eslint": "8.47.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-mocha": "10.1.0",
"handlebars": "4.7.7",
"http-server": "0.13.0",
"husky": "4.3.8",
"jest": "26.6.3",
"jest-file-snapshot": "0.5.0",
"jest-image-snapshot": "4.5.1",
"json2ts": "0.0.7",
"lerna": "3.22.1",
"lerna-changelog": "1.0.1",
"nodemon": "2.0.22",
"puppeteer": "5.5.0",
"rollup": "2.69.1",
"semantic-release": "15.14.0",
"sucrase": "3.20.3",
"tslib": "2.3.1",
"typescript": "4.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"workspaces": [
"packages/*"
]
}