-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.26 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
{
"name": "dashboard",
"version": "0.1.0",
"description": "",
"main": "dist/server/bundle.js",
"scripts": {
"start:dev": "nodemon",
"build": "npm run build:client && npm run build:server",
"build:client": "webpack --config webpack.config.client.js",
"build:server": "webpack --config webpack.config.server.js",
"docs": "jsdoc -t node_modules/clean-jsdoc-theme -r ./src/*/*.js README.md -d ./docs",
"start": "NODE_ENV=production node ./dist/server/bundle.js",
"test": "nyc --reporter=lcov mocha -- -R spec tests/ --require @babel/register",
"lint": "eslint src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShipyardSuite/dashboard.git"
},
"keywords": [],
"author": "Shipyard Suite <shipyardsuite@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ShipyardSuite/dashboard/issues"
},
"homepage": "https://github.com/ShipyardSuite/dashboard#readme",
"dependencies": {
"@shipyardsuite/i18n-manager": "0.1.3",
"dotenv-webpack": "1.8.0",
"express": "^4.17.1",
"html-loader": "1.1.0",
"moment": "2.26.0",
"crypto-js": "^4.0.0",
"mongoose": "5.9.15",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "5.2.0",
"redis": "3.0.2",
"semantic-ui-react": "0.88.2",
"winston": "3.2.1",
"winston-redis": "3.1.0"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-react": "7.9.4",
"@babel/register": "7.10.1",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-add-module-exports": "1.0.2",
"copy-webpack-plugin": "6.0.1",
"css-loader": "3.5.3",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "2.5.1",
"html-webpack-plugin": "4.3.0",
"nodemon": "^2.0.2",
"mocha": "7.1.2",
"chai": "4.2.0",
"nyc": "15.0.1",
"jsdoc": "3.6.4",
"clean-jsdoc-theme": "2.2.11",
"sass": "1.26.5",
"sass-loader": "8.0.2",
"speed-measure-webpack-plugin": "1.3.3",
"style-loader": "1.2.1",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-dev-middleware": "3.7.2",
"webpack-node-externals": "1.7.2"
}
}