forked from adambiltcliffe/codex-feathers-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.99 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
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
{
"name": "codex-feathers-react",
"description": "Game server and browser client for Codex",
"version": "0.1.0",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Adam Biltcliffe",
"email": "adam.biltcliffe@gmail.com"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^10.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run eslint && npm run jest",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true start-storybook",
"dev-server": "nodemon src/ --ignore ./client --ignore ./dist",
"dev-client": "webpack-dev-server --open --config webpack.dev.js",
"dev": "concurrently --kill-others npm:dev-*",
"start": "node src/",
"clean": "shx rm -rf test/data/",
"jest": "npm run clean && cross-env NODE_ENV=test jest --runInBand",
"distribute": "webpack --config webpack.prod.js"
},
"dependencies": {
"@adam.biltcliffe/codex": "^0.2.1",
"@feathersjs/authentication": "^4.3.0",
"@feathersjs/authentication-client": "^4.3.2",
"@feathersjs/authentication-local": "^4.3.0",
"@feathersjs/authentication-oauth": "^4.3.0",
"@feathersjs/configuration": "^4.3.0",
"@feathersjs/errors": "^4.3.0",
"@feathersjs/express": "^4.3.0",
"@feathersjs/feathers": "^4.3.0",
"@feathersjs/socketio": "^4.3.0",
"@feathersjs/socketio-client": "^4.3.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"es6-dynamic-template": "^2.0.0",
"feathers-authentication-hooks": "^0.3.1",
"feathers-hooks-common": "^4.20.7",
"feathers-logger": "^0.3.2",
"feathers-nedb": "^5.0.1",
"helmet": "^3.21.1",
"knuth-shuffle": "^1.0.8",
"nedb": "^1.8.0",
"react": "^16.9.0",
"react-bulma-components": "^3.1.3",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"react-timeago": "^4.4.0",
"redux": "^4.0.4",
"redux-logic": "^2.1.1",
"redux-starter-kit": "^0.7.0",
"reselect": "^4.0.0",
"serve-favicon": "^2.5.0",
"socket.io-client": "^2.2.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.2.5",
"@storybook/react": "^5.2.5",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^4.1.2",
"cross-env": "^5.2.1",
"css-loader": "^3.2.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"shx": "^0.3.2",
"style-loader": "^1.0.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.1",
"webpack-merge": "^4.2.2"
}
}