forked from unimelb/unimelb-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.04 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
{
"name": "unimelb-design-system-assets",
"description": "A complete design system for the University of Melbourne.",
"version": "7.0.0",
"repository": "unimelb/unimelb-design-system",
"author": "The University of Melbourne",
"license": "UNLICENSED",
"engines": {
"node": "6.9.3",
"yarn": "*"
},
"scripts": {
"prebuild": "rm -Rf build/*",
"build": "NODE_ENV=production webpack --config assets/webpack.config.js",
"dev": "node assets/dev-server.js",
"start": "bundle exec foreman start"
},
"dependencies": {
"classlist-polyfill": "unimelb/classlist-polyfill#1.1.20170228",
"cssesc": "0.1.0",
"cuid": "^1.3.8",
"es6-promise": "^4.0.5",
"has-localstorage": "^1.0.1",
"locale-compare-polyfill": "~0.0.2",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"normalize.css": "^5.0.0",
"perfect-scrollbar": "^0.7.0",
"photoswipe": "^4.1.1",
"string-hash": "^1.1.3",
"super-event-emitter": "^4.1.4",
"webfontloader": "~1.6.3"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.4.0",
"babel-preset-stage-3": "^6.24.1",
"css-loader": "^0.28.1",
"dotenv": "^4.0.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-loader": "~0.4.4",
"ip": "~1.1.4",
"postcss-cssnext": "^2.10.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"postcss-mixins": "^5.4.1",
"postcss-nested": "^1.0.1",
"postcss-url": "^6.0.4",
"style-loader": "^0.17.0",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"cacheDirectories": [
"node_modules"
],
"babel": {
"presets": [
"stage-3",
[
"env",
{
"targets": {
"browsers": [
"> 1% in AU",
"last 2 versions",
"Firefox ESR",
"ie >= 9",
"iOS >= 8.4",
"Safari >= 8",
"Android >= 4.4"
]
}
}
]
]
}
}