-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
112 lines (112 loc) · 3.42 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
109
110
111
112
{
"name": "juju-dashboard",
"version": "0.4.1",
"description": "A dashboard for Juju and JAAS (Juju as a service)",
"bugs": {
"url": "https://github.com/canonical-web-and-design/jaas-dashboard/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canonical-web-and-design/jaas-dashboard.git"
},
"license": "LGPL-3.0",
"author": {
"name": "Canonical Webteam",
"email": "[email protected]"
},
"main": "index.js",
"scripts": {
"build": "react-scripts build && yarn run generate-version-file",
"clean": "./scripts/clean-files",
"eslint-check": "eslint src/",
"generate-release-tarball": "yarn run build && ./scripts/generate-release-tarball",
"generate-version-file": "./scripts/generate-version-file",
"lint": "yarn run eslint-check && yarn run prettier-check && yarn run stylelint-check",
"prettier-check": "prettier --check 'src/**/*'",
"serve": "yarn run start",
"start": "react-scripts start",
"stylelint-check": "stylelint 'src/**/*.scss'",
"stylelint-fix": "stylelint --fix 'src/**/*.scss'",
"test": "react-scripts test -w 1 --transformIgnorePatterns 'node_modules/(?!@canonical)/jujulib/dist'",
"typescript-build": "tsc -b"
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transformIgnorePatterns": [
"node_modules/(?!(@canonical/react-components)/)"
]
},
"dependencies": {
"@canonical/jaaslib": "0.6.0",
"@canonical/jujulib": "^2.0.0-beta.2",
"@canonical/macaroon-bakery": "0.3.0",
"@canonical/react-components": "0.14.2",
"@sentry/browser": "5.28.0",
"async-limiter": "2.0.0",
"classnames": "2.2.6",
"clone-deep": "4.0.1",
"d3": "6.3.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"enzyme-to-json": "3.6.1",
"framer-motion": "2.9.5",
"immer": "8.0.0",
"mock-socket": "^9.0.3",
"node-sass": "4.14.1",
"prop-types": "15.7.2",
"query-string": "6.13.7",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-ga": "3.3.0",
"react-redux": "7.2.2",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.1",
"react-test-renderer": "17.0.1",
"redux": "4.0.5",
"redux-devtools-extension": "2.13.8",
"redux-mock-store": "1.5.4",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"use-query-params": "1.1.9",
"vanilla-framework": "2.20.0"
},
"devDependencies": {
"@types/classnames": "2.2.11",
"@types/enzyme": "3.10.8",
"@types/jest": "26.0.16",
"@types/node": "14.14.10",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"eslint-config-prettier": "7.0.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.1.1",
"enzyme": "3.11.0",
"enzyme-to-json": "3.6.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.2.0",
"eslint-plugin-react": "7.21.5",
"jest-websocket-mock": "2.2.0",
"prettier": "2.2.1",
"redux-devtools": "3.7.0",
"stylelint": "13.8.0",
"stylelint-config-standard": "20.0.0",
"stylelint-order": "4.1.0",
"ts-jest": "26.4.4",
"typescript": "4.1.2"
}
}