-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 3.7 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
113
{
"name": "timelockr-client",
"version": "1.0.0",
"description": "Make stuff inaccessible.",
"engines": {
"node": "15.10.0",
"npm": "7.5.3"
},
"keywords": [],
"author": "John Hillert",
"license": "UNLICENSED",
"private": true,
"homepage": "https://github.com/jehillert/timelockr-client#readme",
"main": "index.js",
"module": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jehillert/timelockr-client.git"
},
"scripts": {
"build": "webpack --config ./config/webpack.prod.js --mode production",
"build:stats": "webpack --config ./config/webpack.prod.js --mode production --json > ./build/stats.json",
"update:install": "npm install",
"update:outdated": "npm outdated",
"lint:js": "eslint . --ignore-path .eslintignore",
"lint:css": "stylelint src/common/**/*.css",
"run-terminal": "cd scripts && ./run-terminal.sh",
"start": "webpack serve --config ./config/webpack.dev.js --hot --mode development --port 8080",
"stats": "webpack-bundle-analyzer ./stats.json"
},
"dependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-transform-react-jsx-source": "^7.12.13",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@date-io/moment": "^1.3.13",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/pickers": "^3.3.10",
"@material-ui/styles": "^4.11.3",
"@material-ui/system": "^4.11.3",
"aws-amplify": "^3.3.24",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"bundle-loader": "^0.5.6",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"debug": "^4.3.1",
"dotenv-webpack": "^7.0.2",
"email-validator": "^2.0.4",
"html-webpack-plugin": "^5.3.1",
"jquery": "^3.6.0",
"less": "^4.1.1",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-copy-to-clipboard": "^5.0.3",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-swipeable-views": "^0.13.9",
"react-tabs": "^3.2.1",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"styled-components": "^5.2.1",
"webpack": "^5.26.2",
"webpack-merge": "^5.7.3"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0",
"@babel/preset-env": "7.5.5"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.12.0",
"css-loader": "^5.1.3",
"eslint": "^7.22.0",
"eslint_d": "^10.0.4",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"less-loader": "^8.0.0",
"nodemon": "^2.0.7",
"npm-install-webpack-plugin": "^4.0.5",
"postcss": "^8.2.8",
"redux-devtools-extension": "^2.13.9",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",
"stylelint-config-recommended": "^4.0.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"terser-webpack-plugin": "^5.1.1",
"url-loader": "^4.1.1",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}