-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.12 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.12 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
{
"name": "space",
"version": "0.2.0",
"description": "An user management microservice; OAuth2 provider",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint -c eslint.config.mjs \"./web/{amalthea,callisto,core,ganymede,himalia,io}/**/*.js*\"",
"build": "webpack --config webpack.config.js --mode production",
"dev": "webpack --config webpack.config.js --mode development --progress --color",
"watch": "webpack --config webpack.config.js --mode development --watch --progress --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/earaujoassis/space.git"
},
"author": "Ewerton Carlos Assis <earaujoassis@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/earaujoassis/space/issues"
},
"homepage": "https://github.com/earaujoassis/space#readme",
"dependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@fortawesome/fontawesome-svg-core": "6.5.2",
"@fortawesome/free-regular-svg-icons": "6.5.2",
"@fortawesome/free-solid-svg-icons": "6.5.2",
"@fortawesome/react-fontawesome": "0.2.2",
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.9.0",
"babel-loader": "^9.1.3",
"babel-plugin-macros": "^3.1.0",
"css-loader": "^6.8.1",
"foundation-sites": "^6.9.0",
"mini-css-extract-plugin": "^2.9.2",
"normalize.scss": "^0.1.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^6.0.0",
"react-redux": "^8.1.2",
"react-router": "^5.2.0",
"react-router-dom": "^6.15.0",
"redux-thunk": "^2.4.2",
"resolve-url-loader": "^5.0.0",
"sass": "^1.89.1",
"sass-loader": "^13.3.2",
"terser-webpack-plugin": "^5.3.14",
"webpack": "^5.99.9",
"webpack-cli": "^5.1.4",
"webpack-remove-empty-scripts": "^1.1.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.30.1",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.3.0"
}
}