-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "gun-c4",
"version": "0.0.1",
"description": "Connect four by gunDB",
"main": "server.js",
"scripts": {
"lint": "eslint src/",
"start": "node server.js",
"postinstall": "webpack --config webpack.prod.js",
"build": "webpack",
"build:prod": "webpack --config webpack.prod.js",
"dev": "npm run build -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PsychoLlama/connect-four.git"
},
"keywords": [
"connect-four",
"game",
"gun",
"gunDB",
"game",
"real-time"
],
"author": "Jesse Gibson <[email protected]> (http://techllama.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/PsychoLlama/connect-four/issues"
},
"homepage": "https://github.com/PsychoLlama/connect-four#readme",
"dependencies": {
"connect-four": "0.0.6",
"gun": "^0.3.992",
"random-words": "0.0.1",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-router": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.26.0",
"eslint": "^3.4.0",
"eslint-plugin-react": "^6.2.0",
"node-sass": "^4.0.0",
"sass-loader": "^5.0.0",
"style-loader": "^0.15.0",
"webpack": "^2.2.1"
}
}