forked from ankaraboardgame/ankara
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.65 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.65 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
{
"name": "ankara",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"postinstall": "npm run build",
"build": "webpack",
"start": "node server/app.js",
"build-dev": "webpack -w & nodemon --watch server -e js,html server/app.js",
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-register browser/**/*.test.js browser/react/**/*.test.js game/**/*.test.js server/**/*.test.js",
"test-player": "cross-env NODE_ENV=test mocha server/api/player.test.js",
"test-game": "cross-env NODE_ENV=test mocha server/api/game.test.js",
"test-encounter": "cross-env NODE_ENV=test mocha server/api/encounter.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ankaraboardgame/ankara.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ankaraboardgame/ankara/issues"
},
"homepage": "https://github.com/ankaraboardgame/ankara#readme",
"dependencies": {
"aphrodite": "^1.2.0",
"axios": "^0.15.3",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.24.0",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"firebase": "^3.7.2",
"firebase-admin": "^4.1.3",
"lodash": "^4.17.4",
"material-ui": "^0.17.1",
"mocha": "^3.2.0",
"morgan": "^1.8.1",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-animations": "^0.1.0",
"react-collapsible": "^1.4.0",
"react-dice-complete": "^1.0.2",
"react-dnd": "^2.2.4",
"react-dnd-html5-backend": "^2.2.4",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-redux-firebase": "^1.3.3",
"react-router": "^3.0.0",
"react-tap-event-plugin": "^2.0.1",
"react-toastify": "^1.2.2",
"react-transitions": "0.0.2",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.0",
"redux-logger": "^2.8.2",
"redux-thunk": "^2.2.0",
"webpack": "^2.2.1"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"chai-properties": "^1.2.1",
"chai-things": "^0.2.0",
"cross-env": "^3.2.4",
"css-loader": "^0.27.3",
"enzyme": "^2.8.0",
"firebase-server": "^0.9.1",
"mockfirebase": "^0.12.0",
"nodemon": "^1.11.0",
"react-addons-test-utils": "^15.4.2",
"sinon": "^2.1.0",
"supertest": "^3.0.0",
"supertest-as-promised": "^4.0.2"
}
}