-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.2 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
{
"name": "merkelle",
"version": "0.0.1",
"description": "Blockchain-based autonomous game world written in JavaScript",
"main": "index.js",
"scripts": {
"test": "yarn run build && ./node_modules/.bin/mocha lib/**/**/*.spec.js",
"build": "rm -rf lib/ && mkdir lib/ && babel src -d lib",
"prepublish": "yarn run build",
"go": "yarn run build && nodejs lib/",
"game": "yarn run build && nodejs lib/Game",
"client": "cd ./client && yarn start"
},
"author": "Connor Bryan",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"chai": "^4.1.0",
"flow-bin": "^0.50.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.2"
},
"dependencies": {
"babel-plugin-inline-json-import": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"body-parser": "^1.17.2",
"chance": "^1.0.10",
"crypto-js": "^3.1.9-1",
"express": "^4.15.3",
"react-router-dom": "^4.1.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"semantic-ui-css": "^2.2.11",
"semantic-ui-react": "^0.71.1",
"ws": "^3.0.0"
}
}