generated from gstvribs/monorepo-react-component-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.88 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.88 KB
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
{
"name": "@thedesignsystem/app",
"version": "0.0.0",
"scripts": {
"commit": "git-cz",
"build": "npm run lerna:build",
"build:static": "bash scripts/build.sh",
"test": "npm run lerna:test",
"lint": "npm run lint:ts && npm run lint:scss",
"format": "prettier --write components/**/*.{js,ts,tsx,scss,json}",
"publish:prepare": "bash scripts/pre-publish.sh",
"publish:local": "npm run publish:prepare && lerna publish --contents dist --registry=http://localhost:4873",
"start:storybook": "start-storybook -p 9001 -c .storybook",
"build:storybook": "build-storybook -c .storybook -s .storybook/public -o dist/",
"lint:ts": "eslint -c .eslintrc ./components/ --quiet --ext .ts",
"lint:ts:fix": "eslint -c .eslintrc ./components/ --quiet --ext .ts --fix",
"lint:scss": "stylelint **/*.scss --config .stylelintrc --syntax scss",
"lint:scss:fix": "stylelint **/*.scss --config .stylelintrc --syntax scss --fix",
"registry:local": "verdaccio",
"registry:auth": "npm config set registry http://localhost:4873/ && npm adduser --registry http://localhost:4873/ && npm run npm:reset",
"registry:reset": "npm config set registry https://registry.npmjs.org/",
"registry:dump": "npm run lerna:build && lerna publish from-package --contents dist --registry=http://localhost:4873",
"lerna:bootstrap": "lerna bootstrap --hoist",
"lerna:list": "lerna ls",
"lerna:list:changed": "lerna list --since",
"lerna:build": "lerna run build",
"lerna:build:changed": "lerna run build --since",
"lerna:test": "lerna run test",
"lerna:test:changed": "lerna run test --since",
"lerna:clean": "npm run lerna:clean:artifacts && npm run lerna:clean:packages && npm run lerna:clean:root",
"lerna:clean:artifacts": "lerna run clean --parallel",
"lerna:clean:packages": "lerna clean --yes",
"lerna:clean:root": "rimraf node_modules && rimraf dist",
"postinstall": "npm run lerna:bootstrap"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run build && npm run lint && npm run test"
}
},
"dependencies": {
"react": "^16.8.2",
"react-dom": "^16.8.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.2",
"@types/jest": "^24.0.24",
"@types/react": "^16.9.12",
"@types/react-dom": "^16.9.8",
"autoprefixer": "^9.4.7",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"sass": "^1.26.10",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"postcss-loader": "^3.0.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsdoc": "^27.1.2",
"eslint-plugin-prefer-arrow": "^1.2.1",
"eslint-plugin-prettier": "^3.1.4",
"ts-jest": "^24.2.0",
"ts-loader": "^8.0.1",
"typescript": "^3.7.2",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@lerna/filter-options": "^3.20.0",
"@storybook/addon-actions": "^6.0.22",
"@storybook/addon-essentials": "^6.0.22",
"@storybook/addon-links": "^6.0.22",
"@storybook/cli": "^6.0.22",
"@storybook/node-logger": "^6.0.22",
"@storybook/react": "^6.0.22",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"babel-loader": "^8.0.5",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"stylelint": "^13.6.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-scss": "^3.17.2",
"react-is": "^16.13.1",
"verdaccio": "^4.6.2"
}
}