forked from ritterim/platform-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.88 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
{
"name": "@ritterim/platform-ui",
"version": "1.8.8",
"description": "A CSS framework used by Ritter Insurance Marketing (RIM) for our platform of agent tools.",
"homepage": "https://platformui.com",
"main": "main.js",
"files": [
"/dist",
"/src",
"/main.js",
"/README.md",
"/package.json",
"/vite.config.js",
"/.fantasticonrc.js",
"/index.html"
],
"scripts": {
"start": "run-s build:svgs build:font start:vite",
"build": "run-s build:*",
"build:svgs": "rm -f .src/icons/optimized/*.svg && svgo -f ./src/icons/svg/ -o ./src/icons/optimized",
"build:font": "fantasticon",
"start:vite": "vite",
"build:vite": "vite build",
"preview:vite": "vite preview",
"ver": "echo \"$npm_package_version\""
},
"browserslist": [
"last 2 version",
"> 2%",
"maintained node versions",
"not dead"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ritterim/platform-ui.git"
},
"keywords": [
"CSS",
"SASS",
"UI"
],
"author": "Ritter Insurance Marketing (https://rimdev.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ritterim/platform-ui/issues"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.7",
"autoprefixer": "^10.4.14",
"fantasticon": "^1.2.3",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.25",
"sass": "^1.63.6",
"svgo": "^3.0.2",
"vite": "^4.4.3",
"vite-plugin-banner": "^0.7.0",
"vite-plugin-handlebars": "^1.6.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry",
"corejs": 2,
"targets": {
"browsers": [
"last 2 versions",
"ie >= 11"
]
}
}
]
]
},
"dependencies": {
"semver": "^6.3.0"
}
}