-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.8 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
{
"name": "data.lsdb.io",
"version": "1.0.0",
"description": "Source code for the data.lsdb.io website.",
"main": "src/index.jsx",
"scripts": {
"start": "webpack serve --open --mode development",
"build": "npm run clean && run-p build-client build-server && node ssg.js && rm -rf dist-server",
"build-client": "webpack --config webpack.config.js --mode production",
"build-server": "webpack --config webpack.server.config.js --mode production",
"clean": "rm -rf dist dist-server",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"prepare": "husky"
},
"type": "module",
"keywords": [],
"author": "LINCC Frameworks",
"license": "BSD-3-Clause",
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^9.0.1",
"@mui/material": "^9.0.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-modal-image": "^2.6.0",
"react-router-dom": "^7.15.1"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@eslint/js": "^9.20.0",
"babel-loader": "^10.1.1",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"npm-run-all2": "^8.0.4",
"style-loader": "^4.0.0",
"webpack": "^5.101.3",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.0.4"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --fix",
"prettier --write"
]
}
}