-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.09 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": "snake",
"version": "0.1.0",
"description": "bare bones JS implementation of snake game",
"main": "src/main.js",
"dependencies": {
"babel-polyfill": "^6.0.16",
"lodash": "^4.17.10"
},
"devDependencies": {
"autoprefixer-loader": "^2.0.0",
"babel-core": "^6.1.2",
"babel-loader": "^6.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.1.2",
"css-loader": "^0.15.1",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"node-libs-browser": "^0.5.2",
"style-loader": "^0.12.3",
"webpack": "^1.10.0",
"webpack-dev-server": "^1.10.1"
},
"repository": {
"type": "git",
"url": "https://github.com/subhranshudas/snake-game.git"
},
"scripts": {
"start": "node_modules/webpack-dev-server/bin/webpack-dev-server.js"
},
"keywords": [
"webpack",
"webpack-dev-server",
"template",
"starter",
"es6",
"babel"
],
"author": "Subhranshu Das",
"license": "MIT"
}