-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 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
{
"name": "@nio/ui-kit",
"version": "2.2.8",
"description": "A toolkit for building nio front ends. Based on ReactJS, Reactstrap, ApexCharts, and CSS Modules",
"deploymentUrl": "uikit.niolabs.com",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"start": "node-sass --watch --recursive --importer node_modules/node-sass-magic-importer/dist/cli.js -o dist src",
"lint": "npm run lint-src && npm run lint-ui && npm run lint-sass",
"lint-src": "eslint src --fix",
"lint-ui": "eslint ui --fix",
"lint-sass": "sass-lint --verbose",
"build": "rimraf dist && babel ./src --out-dir ./dist && npm run process-scss",
"process-scss": "node-sass --recursive --importer node_modules/node-sass-magic-importer/dist/cli.js -o dist src",
"publish-package": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nioinnovation/ui-kit.git"
},
"author": "nioinnovation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nioinnovation/ui-kit/issues"
},
"homepage": "https://github.com/nioinnovation/ui-kit#readme",
"dependencies": {
"apexcharts": "^3.19.3",
"bootstrap": "4.5.0",
"highlight.js": "^10.1.1",
"node-sass": "^4.14.1",
"node-sass-magic-importer": "^5.3.2",
"react": "^16.13.1",
"react-apexcharts": "^1.3.7",
"react-clock": "^2.4.0",
"react-dom": "^16.13.1",
"react-rangeslider": "^2.2.0",
"react-select": "^3.1.0",
"react-toggle": "^4.1.1",
"reactstrap": "^8.5.1"
},
"bundledDependencies": [
"@nio/icons",
"bootstrap",
"apexcharts",
"highlight.js",
"prop-types",
"react",
"react-apexcharts",
"react-clock",
"react-dom",
"react-rangeslider",
"react-toggle",
"reactstrap"
],
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-function-bind": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.10.5",
"@babel/traverse": "^7.10.5",
"@babel/types": "^7.10.5",
"autoprefixer": "^9.8.5",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-imports": "^2.0.0",
"cpy-cli": "^3.1.1",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-postcss": "^4.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"rimraf": "^3.0.2",
"sass-lint": "^1.13.1"
}
}