-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.79 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
{
"dependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"@fortawesome/free-brands-svg-icons": "^5.3.1",
"@fortawesome/free-regular-svg-icons": "^5.3.1",
"@fortawesome/free-solid-svg-icons": "^5.3.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"@storybook/addon-storyshots": "^3.4.10",
"@types/quill": "^1.3.10",
"@types/react": "^16.4.12",
"@types/react-dom": "^16.0.2",
"@types/react-test-renderer": "^16.0.2",
"@types/storybook__react": "^3.0.9",
"auto-changelog": "^1.8.0",
"awesome-typescript-loader": "^5.2.0",
"classnames": "^2.2.6",
"jest-coverage-badges": "^1.0.0",
"npm": "^6.4.1",
"quill": "^1.3.6",
"react": "^16.0.2",
"react-custom-properties": "^1.2.0",
"react-dom": "^16.4.2",
"react-feather": "^1.1.1",
"typescript": "^3.0.1",
"update": "^0.7.4",
"webpack": "^4.17.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^3.4.10",
"@storybook/addon-knobs": "^3.4.10",
"@storybook/addon-links": "^3.4.10",
"@storybook/addon-options": "^3.4.10",
"@storybook/addons": "^3.4.10",
"@storybook/react": "^4.0.0-alpha",
"@types/jest": "^23.3.1",
"@types/storybook__addon-knobs": "^3.4.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"badge-up": "^2.3.0",
"color": "^3.0.0",
"file-loader": "^2.0.0",
"husky": "^0.14.3",
"jest": "^23.5.0",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "^4.9.3",
"npm-audit-html": "^1.1.0",
"react-test-renderer": "^16.4.2",
"sass-loader": "^7.1.0",
"shelljs": "^0.8.2",
"ts-jest": "^23.1.4",
"typescript-eslint-parser": "^18.0.0",
"typings-for-css-modules-loader": "^1.7.0"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
],
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"name": "reactjs",
"version": "0.0.1",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"test:full": "yarn test --coverage && jest-coverage-badges",
"storybook": "NODE_PATH=src start-storybook -p 6006",
"build-storybook": "build-storybook",
"publish-storybook": "build-storybook -c .storybook -o .staticBook",
"publish-for-gitlab": "build-storybook -c .storybook -o ./public",
"precommit": "./precommit.sh",
"postcommit": "./postcommit.sh",
"prepush": "node ./scripts/local/prepush.js",
"security": "snyk test --severity-threshold=medium --dry-run",
"security-gitlab": "snyk test --severity-threshold=medium --dry-run",
"security-map": "snyk test --json --severity-threshold=medium --dry-run > ./__generated__/snyk.json",
"security-publish": "snyk-to-html -i ./__generated__/snyk.json -o ./__generated__/packages.html",
"badge": "node ./scripts/validation/badge.builder.js",
"changelog": "node ./scripts/general/log.js \"Generating Change Log\" && auto-changelog -p --template ./scripts/changelog/template.hbs && git add CHANGELOG.md && node ./scripts/general/log.js \"Change Log Created\"",
"github": "node ./scripts/sync/generate.readme.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tskiba/ReactJS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/tskiba/ReactJS/issues"
},
"homepage": "https://gitlab.com/tskiba/ReactJS#README",
"description": ""
}