-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "snake",
"version": "1.0.0",
"description": "basic snake game written in Typescript",
"main": "src/index.ts",
"scripts": {
"dev": "parcel serve src/index.html",
"build": "rimraf ./dist && parcel build src/index.html --public-url .",
"lint": "eslint --ext .js,.ts ./src",
"gh-pages": "gh-pages -d dist -t"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/serkanyersen/snake.git"
},
"keywords": [
"snake"
],
"author": "Serkan Yersen <[email protected]> (http://serkan.io/)",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/serkanyersen/snake/issues"
},
"homepage": "https://gitlab.com/serkanyersen/snake#README",
"dependencies": {
"gh-pages": "^2.0.1",
"typescript": "^3.5.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-typescript": "^4.0.0",
"eslint-plugin-import": "^2.17.3",
"parcel": "^1.12.3",
"parcel-plugin-inliner": "^1.0.10",
"rimraf": "^2.6.3",
"sass": "^1.20.3"
}
}