forked from mayawang/tic-tac-toe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "tic-tac-toe",
"version": "1.0.0",
"description": "Tic-Tac-Toe game written in JavaScript and Backbone",
"main": "./bin/app.bundle.js",
"scripts": {
"start": "webpack-dashboard -- webpack-dev-server",
"test": "jasmine",
"repl": "babel-node",
"build": "webpack",
"deploy": "gh-pages -d build",
"postinstall": "webpack -p --config ./webpack.config.js --progress"
},
"author": "Ada Developers Academy <[email protected]>",
"license": "MIT",
"repository": "AdaGold/tic-tac-toe",
"bugs": {
"url": "https://github.com/AdaGold/tic-tac-toe/issues"
},
"homepage": "https://github.com/AdaGold/tic-tac-toe#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-module-resolver": "^2.3.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"backbone": "^1.3.3",
"jasmine": "^2.5.2",
"jasmine-expect": "^3.0.1",
"jquery": "^3.1.1",
"webpack": "^1.14.0",
"webpack-dashboard": "^0.2.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"webpack-merge": "^2.4.0"
},
"engines": {
"npm": "3.9.5",
"node": "6.2.2"
}
}