This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.63 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
{
"name": "@up42/constellation",
"version": "0.6.0",
"description": "Constellation is the UP42 Design System based on Vue Design System",
"main": "dist/system/system.js",
"files": [
"dist/**/*"
],
"scripts": {
"dev:app": "webpack-dev-server --inline --config ./build/webpack.dev.conf.js",
"dev": "npm-run-all --parallel theo:onchange styleguide theo",
"build": "rm -rf ./dist && npm-run-all theo node:build",
"build:app": "npm run build",
"build:system": "npm-run-all theo node:build:system",
"build:docs": "npm-run-all theo styleguide:build",
"node:build": "NODE_ENV=production webpack --config ./build/webpack.build.conf.js",
"node:build:system": "node ./build/build-system.js",
"styleguide": "vue-styleguidist server",
"styleguide:build": "vue-styleguidist build",
"theo": "theo ./src/tokens/tokens.json --transform web --format map.scss,scss,raw.json,json --dest ./src/assets/tokens",
"theo:onchange": "onchange \"./src/tokens/*.json\" -- npm run theo",
"test": "npm-run-all theo unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/up42/constellation.git"
},
"keywords": [
"up42",
"design",
"system",
"constellation",
"tokens",
"design",
"tokens",
"ui",
"css",
"scss"
],
"author": "Matteo Pescarin <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/up42/constellation/issues"
},
"homepage": "https://github.com/up42/constellation#readme",
"devDependencies": {
"@types/node": "^12.11.7",
"autoprefixer": "^9.7.1",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"extract-loader": "^3.1.0",
"file-loader": "^4.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"npm-run-all": "^4.1.5",
"onchange": "^6.1.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-url": "^8.0.0",
"sass-loader": "^8.0.0",
"sass-resources-loader": "^2.0.1",
"style-loader": "^1.0.0",
"url-loader": "^2.2.0",
"vue": "^2.6.10",
"vue-loader": "^15.7.1",
"vue-router": "^3.1.3",
"vue-styleguidist": "^3.26.0",
"webfontloader": "^1.6.28",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"theo": "^8.1.4"
},
"engines": {
"node": ">= 8.6.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not Explorer > 0",
"IE 11",
"not ExplorerMobile > 0",
"not BlackBerry > 0",
"not OperaMini all",
"not OperaMobile > 0"
]
}