-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
88 lines (88 loc) · 2.97 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
{
"name": "@puppet/react-components",
"version": "5.34.11",
"author": "Puppet, Inc.",
"license": "Apache-2.0",
"main": "build/library.js",
"scripts": {
"link": "npm link",
"analyze": "webpack --config webpack.analyze.config.js",
"build": "NODE_ENV=production webpack",
"prepare": "npm run build",
"complexity": "es6-plato -r -d complexity source/react && open ./complexity/index.html",
"watch": "nodemon --watch source -x \"npm run build\"",
"test": "nyc --require=./test/jsdom.js --reporter=html mocha --require @babel/register --require core-js --require regenerator-runtime/runtime --recursive --exit",
"lint": "npm run js-lint && npm run scss-lint",
"js-lint": "eslint --quiet 'source/react/**/*.js'",
"scss-lint": "stylelint 'source/scss/**/*.scss'",
"format": "eslint --fix 'source/**/*.{js,jsx}'; prettier --write 'source/**/*.{js,jsx,json,md}'",
"start": "cd ../design-system-website && npm start",
"upgrade": "npx npm-check-updates --upgrade"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": "^16.13.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.13.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/eslint-parser": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@babel/register": "^7.25.7",
"babel-loader": "^9.2.1",
"babel-preset-react-hmre": "^1.1.1",
"chai": "^4.5.0",
"chai-enzyme": "^1.0.0-beta.1",
"cheerio": "^1.0.0-rc.12",
"css-loader": "^7.1.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.8",
"es6-plato": "^1.2.3",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"jsdom": "^25.0.1",
"mocha": "^10.7.3",
"mocha-jsdom": "^2.0.0",
"nodemon": "^3.1.7",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router": "^5.3.4",
"react-styleguidist": "^10.6.2",
"resolve-url-loader": "^5.0.0",
"sass": "^1.79.4",
"sass-loader": "^16.0.2",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"stylelint": "^16.9.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@puppet/sass-variables": "^1.4.4",
"classnames": "^2.5.1",
"core-js": "^3.38.1",
"hoist-non-react-statics": "^3.3.2",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react-modal": "^3.16.1",
"react-popper": "^2.3.0",
"react-transition-group": "^4.4.5",
"regenerator-runtime": "^0.14.1",
"scroll-into-view-if-needed": "^2.2.31"
}
}