-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.18 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.18 KB
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
{
"private": true,
"name": "@devstronomy/frontend",
"version": "0.5.0",
"description": "This project contains the code-base for the frontend part of Devstronomy project.",
"license": "MIT",
"homepage": "https://devstronomy.com",
"repository": {
"type": "git",
"url": "git+https://github.com/devstronomy/frontend.git"
},
"bugs": {
"url": "https://github.com/devstronomy/frontend/issues"
},
"scripts": {
"clean": "rimraf dist",
"clean:dist": "run-s clean dist",
"predeploy": "npm run dist",
"deploy": "gh-pages -d dist",
"dist": "webpack --config webpack.prod.js --progress",
"flush-npm": "rm -rf node_modules && npm install --force",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"lint:fix": "eslint --fix src/**/*.ts src/**/*.tsx",
"start": "webpack serve --config webpack.dev.js",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"test:watch": "jest --watchAll",
"prettier": "prettier -c src && prettier-package-json -l ./package.json",
"prettier:fix": "prettier -w src && prettier-package-json --write ./package.json"
},
"dependencies": {
"@devstronomy/celestial": "0.5.0",
"@mui/icons-material": "5.14.1",
"@mui/material": "5.14.1",
"@mui/styled-engine-sc": "5.12.0",
"@mui/system": "5.14.1",
"lodash": "4.17.21",
"polished": "4.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.1.1",
"react-router-dom": "6.14.2",
"react-router-hash-link": "2.4.3",
"react-virtualized": "9.22.5",
"redux": "4.2.1",
"redux-saga": "1.2.3",
"styled-components": "5.3.11"
},
"devDependencies": {
"@devstronomy/dev-dependencies": "file:../dev-dependencies/devstronomy-dev-dependencies-0.3.3-alpha.1.tgz",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/lodash": "4.14.195",
"@types/node": "18.17.0",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@types/react-redux": "7.1.25",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@types/react-router-hash-link": "2.4.6",
"@types/react-virtualized": "9.21.22",
"@types/styled-components": "5.1.26",
"@types/webpack": "5.28.1",
"@types/webpack-dev-server": "4.7.1",
"babel-eslint": "10.1.0",
"babel-plugin-styled-components": "2.1.4",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.8.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest-dom": "4.0.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-standard": "4.1.0",
"gh-pages": "4.0.0",
"html-webpack-plugin": "5.5.3",
"jest-environment-jsdom": "29.6.1",
"json5-loader": "4.0.1",
"mini-css-extract-plugin": "2.7.6",
"rimraf": "3.0.2",
"style-loader": "3.3.3"
},
"keywords": [
"apollo",
"astronomy",
"datasets",
"planetary-satellites",
"planets",
"solar-system"
],
"engines": {
"node": "^18",
"npm": "^9"
},
"browserslist": [
"defaults"
]
}