forked from turingschool-examples/game-time-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.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
{
"name": "game-time-starter-kit",
"version": "1.0.0",
"description": "A starter kit for Turing School's Game Time project.",
"main": "index.js",
"scripts": {
"start": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"build": "./node_modules/webpack/bin/webpack.js",
"test": "./node_modules/mocha/bin/mocha --compilers js:babel/register"
},
"repository": {
"type": "git",
"url": "https://github.com/turingschool-examples/game-time-starter-kit.git"
},
"author": "Steve Kinney",
"license": "MIT",
"bugs": {
"url": "https://github.com/turingschool-examples/game-time-starter-kit/issues"
},
"homepage": "https://github.com/turingschool-examples/game-time-starter-kit",
"devDependencies": {
"babel": "^5.8.3",
"babel-core": "^5.7.4",
"babel-loader": "^5.3.2",
"chai": "^3.2.0",
"css-loader": "^0.15.5",
"mocha": "^2.2.5",
"mocha-loader": "^0.7.1",
"node-libs-browser": "^0.5.2",
"node-sass": "^3.2.0",
"sass-loader": "^1.0.2",
"style-loader": "^0.12.3",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"jquery": "^2.2.3"
}
}