-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.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
{
"name": "moode-ui",
"description": "A prototype React UI for moode",
"version": "0.0.1",
"files": [
"dist/"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"clean": "rimraf dist",
"build": "webpack --mode production",
"start": "webpack-dev-server -d --open",
"lint:fix": "npm run lint -- --fix",
"lint": "cross-env eslint 'src/**/*.{js,jsx}'",
"test:e2e": "jest -c jest-e2e.config.js --detectOpenHandles",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chris-rudmin/moode-ui.git"
},
"keywords": [],
"author": "Chris Rudmin",
"license": "MIT",
"bugs": {
"url": "https://github.com/chris-rudmin/moode-ui/issues"
},
"homepage": "https://github.com/chris-rudmin/moode-ui",
"dependencies": {
"@material-ui/core": "^4.7.2",
"@material-ui/icons": "^4.5.1",
"@material-ui/styles": "^4.7.1",
"axios": "^0.21.1",
"md5": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-measure": "^2.3.0",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"core-js": "^3.5.0",
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"expect-puppeteer": "^4.3.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"jest-puppeteer": "^4.3.0",
"mocker-api": "^1.9.0",
"prettier": "^1.19.1",
"puppeteer": "^2.0.0",
"rimraf": "^3.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
}
}