-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 846 Bytes
/
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
{
"name": "sliding-puzzle",
"version": "1.0.0",
"description": "Sliding puzzle built using ES6",
"main": "index.js",
"private": true,
"repository": {
"url": "https://github.com/faouzioudouh/sliding-puzzle.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --hide-modules",
"start": "./node_modules/.bin/webpack-dev-server --inline"
},
"keywords": [
"sliding",
"puzzle",
"es6"
],
"author": "Faouzi Oudouh",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.5"
},
"dependencies": {
"lodash": "^4.17.4"
}
}