forked from merative/spm-ui-addon-devenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.17 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
{
"name": "spm-ui-addon-devenv",
"version": "1.0.0",
"description": "Enable the development of Carbon Components, and can be integrated with GraphQl and apollo client.",
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"scripts": {
"preinstall": "npx npm-force-resolutions",
"clean": "rm -rf node_modules/",
"build": "gulp prod:spm",
"dev": "gulp dev:spm",
"deploy": "gulp deploy:spm",
"test": "jest src/* --config ./config/jest.config.js",
"gen-doc": "jsdoc -c ./config/jsdoc-config.json -d ./reports/doc",
"coverage": "npm run test -- --coverage --coverageDirectory ./reports/coverage",
"lint": "./node_modules/.bin/eslint packages/custom-carbon-addons/src packages/carbon-addons-devenv/src",
"start": "webpack-dev-server --mode development",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/react": "^6.3.8",
"@webpack-cli/serve": "^1.6.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.3.1",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"dotenv": "^8.2.0",
"dotenv-webpack": "^3.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"husky": "^4.3.0",
"jest": "^24.9.0",
"jsdoc": "^3.6.7",
"node-sass": "^6.0.1",
"sass-loader": "^10.0.3",
"shelljs": "^0.8.5",
"style-loader": "^0.23.0",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"@carbon/grid": "^10.20.0",
"@carbon/icon-helpers": "^10.13.0",
"@carbon/icons": "^10.25.0",
"@carbon/icons-react": "^10.25.0",
"@carbon/layout": "^10.17.0",
"@carbon/pictograms-react": "^11.2.0",
"@carbon/type": "^10.20.0",
"carbon-components": "10.44.0",
"carbon-components-react": "7.41.0",
"carbon-icons": "^7.0.7",
"classnames": "^2.2.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-intl": "^2.8.0",
"react-app-polyfill": "^1.0.6",
"regenerator-runtime": "^0.13.7",
"prop-types": "*",
"@apollo/client": "^3.2.5",
"graphql": "^15.3.0",
"core-js": "*"
},
"resolutions": {
"immer": "9.0.6",
"set-value": "4.0.1",
"glob-parent": "5.1.2",
"trim": "0.0.3",
"prismjs": "1.27.0",
"async": "3.2.2",
"ssri": "6.0.2",
"node-fetch": "2.6.7",
"follow-redirects": "1.14.7",
"minimist": "1.2.6",
"marked": "4.0.10",
"ansi-html": "0.0.8",
"node-forge": "1.3.0"
}
}