-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 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
{
"name": "pong-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "parcel serve --out-dir devDist ./src/index.html",
"build": "npm run lint && parcel --public-url https://evanhgarrett.com/pong-typescript/ build ./src/index.html",
"deploy": "npm run lint && gh-pages -d dist",
"lint": "eslint 'src/**'",
"lint-fix": "eslint --fix 'src/**'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evang522/pong-typescript.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/evang522/pong-typescript/issues"
},
"homepage": "https://github.com/evang522/pong-typescript#readme",
"devDependencies": {
"gh-pages": "^2.1.1",
"parcel-bundler": "^1.12.3",
"typescript": "^3.5.3",
"typescript-tslint-plugin": "^0.5.4",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.18.2"
},
"dependencies": {}
}