-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.18 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": "@washingtonstateuniversity/web-design-system",
"version": "0.1.1",
"description": "Web Design System for Washington State University.",
"private": true,
"main": "src/index.js",
"dependencies": {
"@storybook/cli": "^6.1.15",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"typed.js": "^2.0.11"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@etchteam/storybook-addon-status": "^2.1.0",
"@storybook/addon-a11y": "^6.1.10",
"@storybook/addon-actions": "^6.1.10",
"@storybook/addon-console": "^1.2.2",
"@storybook/addon-docs": "^6.1.10",
"@storybook/addon-knobs": "^6.1.10",
"@storybook/addon-links": "^6.1.10",
"@storybook/addon-viewport": "^6.1.10",
"@storybook/addons": "^6.1.10",
"@storybook/html": "^6.1.10",
"@storybook/react": "^6.1.10",
"@storybook/storybook-deployer": "^2.8.7",
"@whitespace/storybook-addon-html": "^2.0.1",
"@wsuwebteam/build-tools": "^1.11.1",
"@wsuwebteam/wsu-icons": "latest",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.2.2",
"classnames": "^2.2.6",
"core-js": "^3.8.1",
"css-loader": "^3.6.0",
"file-loader": "^4.3.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.0.0-alpha.15",
"mini-css-extract-plugin": "^0.8.2",
"mitt": "^1.2.0",
"modularscale-sass": "^3.0.8",
"node-sass": "^4.14.1",
"objectFitPolyfill": "^2.3.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^3.0.0",
"react-countup": "^4.3.3",
"rimraf": "^3.0.2",
"sass": "^1.30.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.3.0",
"swiper": "^5.4.5",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.0.0-rc.6",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"start": "npm run storybook",
"start:bundles": "webpack-dev-server --env.NODE_ENV=development --config bundles.config.js --watch",
"build": "npm run clean && npm run build:bundles && npm run build:storybook",
"build:bundles": "webpack --env.NODE_ENV=production --config bundles.config.js",
"build:storybook": "build-storybook -o ./storybook/public",
"clean": "rimraf ./bundles/dist && rimraf ./storybook/public",
"storybook": "start-storybook -p 6006",
"deploy:storybook": "storybook-to-aws-s3 --bucket-path=storybook.web.wsu.edu",
"deploy:storybook-internal": "storybook-to-aws-s3 --bucket-path=storybook-internal.web.wsu.edu"
},
"repository": {
"type": "git",
"url": "git://github.com/washingtonstateuniversity/wsu-web-design-system.git"
},
"author": "WSU University Communications",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/washingtonstateuniversity/wsu-web-design-system/issues"
},
"homepage": "https://github.com/washingtonstateuniversity/wsu-web-design-system#readme",
"browserslist": [
"last 2 versions",
"Firefox ESR",
"android 4",
"opera 12",
"ie >= 11",
"ie_mob >= 11",
"ff >= 30",
"chrome >= 34",
"safari >= 7",
"opera >= 23",
"ios >= 7",
"android >= 4.4",
"bb >= 10",
"not dead"
]
}