-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.76 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
{
"name": "player",
"version": "0.1.1",
"description": "",
"main": "dist/server/bundle.js",
"scripts": {
"start:dev": "nodemon",
"build": "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/player.git"
},
"keywords": [],
"author": "Shipyard Suite <shipyardsuite@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ShipyardSuite/player/issues"
},
"homepage": "https://github.com/ShipyardSuite/player#readme",
"dependencies": {
"crypto-token": "^1.0.1",
"dotenv-webpack": "1.8.0",
"crypto-js": "4.0.0",
"express": "^4.17.1",
"mongoose": "5.9.15",
"redis": "3.0.2",
"winston": "3.2.1",
"winston-redis": "3.1.0"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/register": "7.10.1",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-add-module-exports": "1.0.2",
"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",
"chai": "4.2.0",
"mocha": "7.1.2",
"nodemon": "^2.0.2",
"nyc": "15.0.1",
"jsdoc": "3.6.4",
"clean-jsdoc-theme": "2.2.11",
"speed-measure-webpack-plugin": "1.3.3",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-dev-middleware": "3.7.2",
"webpack-node-externals": "1.7.2"
}
}