-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
45
46
47
48
{
"name": "ywc17-homework",
"description": "YWC17 Homework for the Programming Major",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:phoomparin/ywc17-homework.git",
"author": "Phoomparin Mano <[email protected]>",
"license": "MIT",
"scripts": {
"firebase": "firebase",
"start": "parcel src/views/index.pug",
"build": "parcel build --public-url '.' src/views/index.pug"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"eslint": "^6.7.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-standard": "^4.0.1",
"firebase-tools": "^7.12.1",
"husky": "^3.0.9",
"lint-staged": ">=8",
"parcel-bundler": "^1.12.4",
"parcel-plugin-markdown-string": "^1.4.2",
"parcel-plugin-static-files-copy": "^2.2.1",
"prettier": "^1.18.2",
"pug": "^2.0.4",
"sass": "^1.23.1",
"typescript": "^3.6.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"jstransformer-markdown-it": "^2.1.0",
"whatwg-fetch": "^3.0.0"
}
}