This repository was archived by the owner on Apr 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 3.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "dashboard",
"version": "0.0.1",
"description": "Docker management",
"main": "index.js",
"scripts": {
"format": "prettier --write \"./src/**/*.{js,jsx,css}\"",
"stylelint": "stylelint \"./src/**/*.css\"",
"eslint": "eslint --fix --ext .jsx \"./src/**/*.{js,jsx}\"",
"lint": "npm run eslint && npm run stylelint",
"doc": "esdoc",
"start": "NODE_ENV=staging parcel src/index.html --public-url / -d ./dist --open",
"test": "nyc --reporter text --reporter lcov --extension .jsx --require @babel/register ava --verbose",
"prebuild": "npm run format && npm run lint && npm test",
"build": "parcel build src/index.html --public-url / -d ./dist",
"postbuild": "cp ./src/robots.txt ./src/favicon/* ./dist/"
},
"repository": {
"type": "git",
"url": "git://github.com/ViBiOh/dashboard.git"
},
"keywords": [
"react",
"react-router",
"react-router-dom",
"react-router-redux",
"history",
"redux",
"redux-saga",
"docker",
"nyc",
"eslint",
"parcel-bundler",
"babel"
],
"author": "Vincent Boutour",
"license": "MIT",
"bugs": {
"url": "https://github.com/ViBiOh/dashboard/issues"
},
"homepage": "https://github.com/ViBiOh/dashboard",
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.4.0",
"@redux-saga/testing-utils": "1.0.2",
"ava": "1.4.1",
"babel-eslint": "10.0.1",
"babel-plugin-module-resolver": "3.2.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.12.1",
"esdoc": "1.1.0",
"esdoc-coverage-plugin": "1.1.0",
"esdoc-ecmascript-proposal-plugin": "1.0.0",
"esdoc-jsx-plugin": "1.0.0",
"esdoc-publish-html-plugin": "1.1.2",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-import-resolver-babel-module": "5.0.1",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"identity-obj-proxy": "3.0.0",
"ignore-styles": "5.0.1",
"jsdom": "14.0.0",
"nyc": "14.0.0",
"parcel-bundler": "1.12.3",
"postcss-modules": "1.4.1",
"prettier": "1.17.0",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.8.6",
"sinon": "7.3.2",
"stylelint": "10.0.1",
"stylelint-config-standard": "18.3.0"
},
"dependencies": {
"babel-polyfill": "6.26.0",
"chart.js": "2.8.0",
"classnames": "2.2.6",
"date-fns": "1.30.1",
"express": "4.16.4",
"funtch": "1.5.13",
"history": "4.9.0",
"normalize.css": "8.0.1",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-icons": "3.6.1",
"react-redux": "7.0.2",
"react-router": "5.0.0",
"react-router-dom": "5.0.0",
"react-router-redux": "4.0.8",
"redux": "4.0.1",
"redux-saga": "1.0.2"
},
"ava": {
"files": [
"./src/**/*.test.js"
],
"require": [
"@babel/register",
"ignore-styles",
"./src/utils/Test.js"
]
}
}