-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.15 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
{
"name": "gridlock",
"version": "1.0.0",
"description": "Puzzle game built using React",
"main": "index.js",
"scripts": {
"dev": "./node_modules/.bin/babel-node ./server.js",
"deploy": "echo TODO: Write deploy function && exit 1",
"test": "jest"
},
"keywords": [
"puzzle",
"game"
],
"repository": {
"type": "git",
"url": "https://github.com/doneee/gridlock.git"
},
"engines": {
"node": "6.1.0"
},
"author": "Donny Swany",
"license": "ISC",
"devDependencies": {
"babel-jest": "^17.0.2",
"enzyme": "^2.6.0",
"eslint": "^3.10.2",
"eslint-loader": "^1.6.1",
"eslint-plugin-react": "^6.7.1",
"jest": "^17.0.2",
"react-addons-test-utils": "^15.0.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^15.4.1"
},
"dependencies": {
"appcache-webpack-plugin": "^1.3.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^1.0.1",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"immutable": "^3.8.1",
"ip": "^1.1.4",
"json-loader": "^0.5.4",
"keycode-js": "0.0.3",
"material-ui": "^0.16.4",
"node-sass": "^3.10.1",
"react": "^15.4.0",
"react-dom": "^15.0.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"react-router-transition": "0.0.6",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"uuid": "^3.0.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"jest": {
"modulePaths": [
"src"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/mocks/fileMock.js",
"\\.(css|less|sass|scss)$": "<rootDir>/mocks/styleMock.js"
}
}
}