-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "tic-tac-toe",
"version": "1.0.0",
"description": "Tic-Tac-Toe with es6 and webpack",
"main": "app/index.js",
"scripts": {
"build": "webpack --config webpack-production.config.js --env dev && webpack --config webpack-production.config.js --env build",
"serve": "webpack --env dev && webpack --env build",
"start": "webpack-dev-server"
},
"babel": {
"presets": [
"es2015"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/debabrata100/tic-tac-toe.git"
},
"keywords": [
"es6",
"webpack",
"gamelibrary"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/debabrata100/tic-tac-toe/issues"
},
"homepage": "https://github.com/debabrata100/tic-tac-toe#readme",
"dependencies": {
"webpack": "^3.10.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"strip-loader": "^0.1.2",
"webpack-dev-server": "^2.9.7",
"yargs": "^11.0.0"
}
}