-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
96 lines (96 loc) · 2.84 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
{
"name": "gumdrops",
"version": "1.17.5",
"description": "GumGum's React Components Library",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"scripts": {
"start": "yarn run storybook",
"storybook": "storybook dev -p 6006",
"prebuild": "rimraf dist",
"build": "node tools/build",
"buildstorybook": "storybook build -c .storybook -o build",
"publish-pack": "env PUBLISH_PACK=1 node tools/build",
"prepare": "npm run build",
"lint": "eslint . --ext .js,jsx --color",
"test": "NODE_ENV='test' jest",
"test:updateSnapshot": "NODE_ENV='test' jest --updateSnapshot",
"test:watch": "NODE_ENV='test' jest --watch",
"preclean": "rimraf node_modules",
"clean": "yarn cache clean && yarn install",
"prettier": "prettier \"*/**/*.{js,jsx,json,css,scss}\" --ignore-path ./.prettierignore --write && git status",
"build-storybook": "storybook build"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/_tests/jestSetup.js"
],
"moduleDirectories": [
"node_modules"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"pre-commit": [
"prettier"
],
"repository": {
"type": "git",
"url": "[email protected]:gumgum/gumdrops.git"
},
"peerDependencies": {},
"dependencies": {
"classnames": "^2.2.6",
"react-modal": "^3.11.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "^7.3.4",
"@storybook/addon-essentials": "^7.0.4",
"@storybook/addon-links": "^7.0.4",
"@storybook/addon-styling": "^1.0.0",
"@storybook/react": "^7.0.4",
"@storybook/react-webpack5": "^7.0.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-plugin-transform-runtime": "^6.23.0",
"css-loader": "5.2.6",
"eslint": "^5.8.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-storybook": "^0.6.11",
"gumgum-design": "^2.1.4",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.4",
"prop-types": "^15.6.1",
"raw-loader": "^0.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"resolve-url-loader": "^5.0.0",
"rimraf": "^2.6.1",
"rollup": "^1.4.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-uglify": "^3.0.0",
"sass": "^1.58.3",
"sass-loader": "10.1.1",
"storybook": "^7.0.4",
"style-loader": "2.0.0"
}
}