-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.44 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
{
"name": "oni-on-cheese",
"version": "0.0.1",
"description": "Tag Game with Google maps.",
"main": "index.js",
"repository": "https://github.com/ryutaudo/oni-on-cheese.git",
"author": "Tsuyoshi Maeda <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=8.7.0"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-emotion": "^8.0.12",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"bootstrap": "4.0.0-beta.2",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"chalk": "^2.3.0",
"dotenv": "^4.0.0",
"emotion": "^8.0.12",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"express": "^4.16.2",
"fontawesome-markers": "^4.6.1",
"jest": "^21.2.1",
"morgan": "^1.9.0",
"nohm": "^0.9.8",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-emotion": "^8.0.12",
"react-google-maps": "^9.4.3",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "^1.0.17",
"react-spinners": "^0.2.5",
"reactstrap": "^5.0.0-alpha.4",
"redis": "^2.8.0",
"redux": "^3.7.2",
"redux-mock-store": "^1.3.0",
"redux-thunk": "^2.2.0",
"sinon": "^4.1.3",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"socket.io-redis": "^5.2.0",
"sticky-session": "^1.1.2"
},
"scripts": {
"start": "babel-node server/index.js --presets es2015,stage-3",
"server:dev": "NODE_ENV=development nodemon server/index.js --exec babel-node --presets es2015,stage-3",
"hack": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"jest": "jest",
"jest:server": "jest server",
"eject": "react-scripts eject",
"eslint": "./node_modules/.bin/eslint src server",
"postinstall": "yarn eslint && yarn jest && yarn build"
},
"devDependencies": {
"eslint": "^4.13.1",
"eslint-plugin-react": "^7.5.1",
"nodemon": "^1.12.5"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/server/__tests__/helpers/",
"<rootDir>/src/__tests__/helpers/",
"<rootDir>/node_modules/"
],
"moduleNameMapper": {
"\\.(css)$": "<rootDir>/src/__mocks__/styleMock.js"
}
}
}