generated from NoisyTrumpet/osi-dls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 4.05 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": "@noisytrumpet/osi-dls",
"version": "1.8.0",
"description": "OSILIFE.com | Design Language System",
"dependencies": {
"formik": "2.1.4",
"interweave": "^12.6.0",
"micromodal": "0.4.6",
"moment": "2.24.0",
"react-cookie": "^4.0.3",
"react-inlinesvg": "2.1.1",
"react-lazy-load": "3.1.13",
"react-micro-modal": "1.7.3",
"react-responsive": "8.0.3",
"react-router-dom": "5.1.2",
"yup": "0.28.5"
},
"scripts": {
"build": "node conf/exportIndex.js && rollup -c conf/rollup.config.js && node conf/copyLibTemplate.js",
"lint": "eslint --ext .js -c conf/.eslintrc.json src",
"lint:fix": "eslint --ext .js -c conf/.eslintrc.json --fix src",
"storybook": "(yarn test:generate-output -- -u || true) && start-storybook --config-dir conf/storybook",
"build:storybook": "(yarn test:generate-output -- -u || true) && build-storybook --config-dir conf/storybook -o storybook-output",
"test": "jest --no-cache -u",
"test:generate-output": " jest --json --outputFile=.jest-test-results.json",
"test:watch": "jest --no-cache -u --watch",
"test:coverage": "jest --no-cache -u --coverage",
"semantic-release": "semantic-release",
"clean": "rm -r ./node_modules/.cache"
},
"devDependencies": {
"@react-mock/fetch": "^0.3.0",
"@rollup/plugin-json": "4.0.3",
"@semantic-release/github": "^7.2.0",
"@storybook/addon-a11y": "5.3.18",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-docs": "5.3.18",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-jest": "5.3.18",
"@storybook/addon-knobs": "5.3.18",
"@storybook/addon-links": "^6.1.11",
"@storybook/addon-storysource": "5.3.18",
"@storybook/node-logger": "^6.1.11",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/react": "^6.1.11",
"@testing-library/jest-dom": "5.11.1",
"@testing-library/react": "10.4.7",
"axios": "^0.21.0",
"babel-eslint": "10.1.0",
"babel-jest": "25.2.6",
"babel-loader": "8.1.0",
"babel-plugin-module-resolver": "4.0.0",
"classnames": "2.2.6",
"css-loader": "3.4.2",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"enzyme-to-json": "3.4.4",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"husky": "^4.2.5",
"identity-obj-proxy": "3.0.0",
"jest": "25.2.6",
"node-sass": "4.13.1",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"rollup": "2.3.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-copy": "3.3.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-scss": "2.4.0",
"rollup-plugin-svg": "2.0.0",
"sass-loader": "8.0.2",
"semantic-release": "^17.3.1",
"storybook-addon-smart-knobs": "6.0.2",
"storybook-formik": "2.1.0",
"storybook-react-router": "1.0.8",
"style-loader": "1.1.3"
},
"peerDependencies": {
"@react-mock/fetch": "^0.3.0",
"axios": ">=0.21.0",
"prop-types": ">=15.5",
"react": ">=16.12",
"react-dom": ">=16.12"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/conf/enzymeAdapter.setup.js"
],
"transform": {
".+\\.js$": "babel-jest"
},
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "identity-obj-proxy",
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/assetsTransformer.js"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/NoisyTrumpet/osi-dls.git"
},
"bugs": {
"url": "https://github.com/NoisyTrumpet/osi-dls/issues"
},
"homepage": "https://github.com/NoisyTrumpet/osi-dls#readme",
"main": "lib/index.js",
"files": [
"lib"
],
"author": "CesarBenavides777",
"license": "UNLICENSED"
}