forked from Tominous/minecraft.js-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 4.05 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "minecraft.js",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/react-hooks": "^3.0.0",
"@tweenjs/tween.js": "^17.4.0",
"apollo-boost": "^0.4.4",
"apollo-link": "^1.2.11",
"apollo-link-context": "^1.0.17",
"apollo-link-http": "^1.5.14",
"apollo-link-ws": "^1.0.17",
"apollo-utilities": "^1.2.1",
"bcryptjs": "^2.4.3",
"colyseus": "^0.10.9",
"concurrently": "^4.1.1",
"cookie": "^0.4.0",
"cross-env": "^5.2.0",
"d3-ease": "^1.0.5",
"debug": "^4.1.1",
"detect-browser": "^4.6.0",
"dotenv": "^8.0.0",
"fast-voxel-raycast": "^0.1.1",
"formik": "^1.5.8",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"graphql-yoga": "^1.18.1",
"jsonwebtoken": "^8.5.0",
"lz-string": "^1.4.4",
"merge-graphql-schemas": "^1.7.0",
"ndarray": "^1.0.18",
"noisejs": "^2.1.0",
"pluralize": "^8.0.0",
"prisma-binding": "^2.3.6",
"prop-types": "^15.7.2",
"randomstring": "^1.1.5",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-outside-click-handler": "^1.2.4",
"react-pannellum": "^0.1.6",
"react-router-dom": "^5.0.1",
"react-scripts": "3.1.0",
"skinview3d": "^1.2.0-alpha.1",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"styled-components": "^4.3.2",
"subscriptions-transport-ws": "^0.9.16",
"three": "^0.107.0",
"tic": "^1.0.0",
"tooloud": "^2.0.4",
"yup": "^0.27.0"
},
"scripts": {
"client:start": "yarn run client",
"client:build": "react-app-rewired build",
"client:test": "react-app-rewired test",
"client:eject": "react-scripts eject",
"prisma:delete": "prisma delete -f",
"prisma:down": "docker-compose --file server/prisma/docker-compose.yml down",
"prisma:deploy": "prisma deploy",
"prisma:get-schema": "graphql get-schema -p prisma",
"client": "react-app-rewired start",
"reset": "yarn run prisma:delete && yarn run prisma:deploy && yarn run prisma:get-schema",
"server": "cross-env DEBUG=server,socket,redis nodemon --watch server server/src/ --ext js,graphql --exec babel-node",
"prisma": "docker-compose --file server/prisma/docker-compose.yml up -d",
"init": "yarn run prisma && sleep 5 && yarn run prisma:deploy && yarn run prisma:get-schema",
"start": "yarn run prisma && concurrently \"yarn run client\" \"yarn run server\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,core}/**/*.{js,jsx}": [
"eslint --fix",
"stylelint --config=.stylelintrc --fix",
"pretty-quick --staged",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"customize-cra": "^0.5.0",
"eslint-config-airbnb": "^18.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"graphql-cli": "^3.0.12",
"husky": "^3.0.3",
"lint-staged": "^9.2.1",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"prisma": "^1.34.5",
"react-app-rewire-aliases": "^0.2.0",
"react-app-rewired": "^2.1.3",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-config-yoctol": "^2.0.0",
"stylelint-order": "^3.0.1",
"stylelint-processor-styled-components": "^1.8.0",
"worker-loader": "^2.0.0"
}
}