-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.49 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
49
50
51
52
53
54
55
56
{
"name": "weather-sucks",
"version": "17.0.0",
"description": "Our Earth needs yet another Weather App",
"scripts": {
"typecheck": "tsc && npm run check-code-style",
"build:legacy": "rollup -c rollup.config.js",
"fix-code-style": "prettier --write src/**/*.js",
"check-code-style": "prettier --check src/**/*.js",
"deploy": "firebase deploy --token $FIREBASE_TOKEN"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goldenratio/weather-sucks.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/goldenratio/weather-sucks/issues"
},
"homepage": "https://github.com/goldenratio/weather-sucks#readme",
"devDependencies": {
"@babel/core": "7.9.0",
"babel-loader": "8.1.0",
"babel-plugin-htm": "3.0.0",
"husky": "4.2.3",
"lint-staged": "10.0.9",
"prettier": "1.19.1",
"rollup": "2.1.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-buble": "0.19.8",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-copy": "3.3.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-serve": "1.0.1",
"rollup-plugin-sourcemaps": "0.5.0",
"typescript": "3.6.4"
},
"dependencies": {
"core-js": "3.6.4",
"url-search-params-polyfill": "8.0.0",
"whatwg-fetch": "3.0.0"
},
"lint-staged": {
"*.js": [
"npm run fix-code-style",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}