forked from MumbaiHackathon/best-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·52 lines (52 loc) · 1.03 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
{
"name": "best-game",
"version": "0.0.1",
"description": "best game",
"main": "index.js",
"scripts": {
"start": "node server/index.js",
"start-server": "node server/index.js",
"start-build": "script/build",
"serve": "script/watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/RawCoderz/best-game"
},
"keywords": [
"babel",
"es6",
"webpack",
"boilerplate"
],
"license": "MIT",
"devDependencies": {
"babel-core": "^4.4.3",
"babel-jest": "^4.0.0",
"babel-loader": "^4.0.0",
"babelify": "^5.0.3",
"es6ify": "^1.6.0",
"jest": "^0.1.37",
"jshint": "^2.6.3",
"jshint-loader": "^0.8.3",
"uglify-js": "^2.4.16",
"webpack": "^1.5.3"
},
"jest": {
"scriptPreprocessor": "./node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
},
"dependencies": {
"express": "^4.15.2",
"socket.io": "^1.7.3"
}
}