-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.08 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "shirtapp",
"description": "",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "",
"email": ""
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^10.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run eslint && NODE_ENV= npm run mocha",
"lint": "eslint src/. test/. --config .eslintrc.json",
"build:dev": "webpack --watch --progress --config webpack.dev.js",
"start:dev": "nodemon --watch src/server/ src/server/",
"build": "webpack --progress --config webpack.prod.js",
"start": "nodemon src/server/",
"mocha": "mocha test/ --recursive --exit"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@feathersjs/authentication": "^2.1.16",
"@feathersjs/authentication-client": "^1.0.11",
"@feathersjs/authentication-jwt": "^2.0.10",
"@feathersjs/authentication-local": "^1.2.9",
"@feathersjs/configuration": "^2.0.6",
"@feathersjs/errors": "^3.3.6",
"@feathersjs/express": "^1.3.1",
"@feathersjs/feathers": "^3.3.1",
"@feathersjs/socketio": "^3.2.9",
"@feathersjs/socketio-client": "^1.2.1",
"axios": "^0.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"ethers": "^4.0.30",
"feathers-memory": "^3.0.2",
"feathers-mongodb": "^4.0.4",
"helmet": "^3.18.0",
"mobx": "^5.9.4",
"mobx-react": "^6.0.2",
"mongodb": "^3.2.6",
"mongodb-core": "^3.2.6",
"nodemon": "^1.19.1",
"qrcode": "^1.3.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.0",
"reducers": "^3.0.0-alpha",
"redux": "^4.0.4",
"redux-saga": "^1.0.5",
"redux-thunk": "^2.3.0",
"serve-favicon": "^2.5.0",
"sessionstorage": "^0.1.0",
"socket.io-client": "^2.2.0",
"uniqid": "^5.0.3",
"webpack": "^4.32.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"bundle-loader": "^0.5.6",
"clean-webpack-plugin": "^2.0.2",
"css-loader": "^2.1.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.7.1",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}