-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.8 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
{
"name": "pizza-to-the-polls",
"private": false,
"version": "1.0.0",
"description": "Pizza to the Polls",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pizza-to-the-polls/polls.pizza"
},
"scripts": {
"dev": "stencil build --dev --watch --serve",
"build": "npm run clean && npm run lint && stencil build --prod --no-cache --prerender",
"bugsnag": "bugsnag-source-maps upload-browser --overwrite --api-key $BUGSNAG_KEY --directory dist/www --base-url https://polls.pizza",
"clean": "rimraf dist/www",
"start": "npm run dev",
"fix": "npm run prettier:fix && npm run lint:fix",
"lint": "tslint --project .",
"lint:fix": "tslint --fix --force --project .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"generate": "stencil generate",
"test": "stencil test --spec --e2e",
"test:watch": "stencil test --spec --e2e --watch",
"ci": "npm run prettier && npm run lint && npm run test",
"util:check-updates": "npm-check-updates",
"util:perform-updates": "npm-check-updates -u"
},
"dependencies": {
"@bugsnag/js": "^7.5.1",
"@bugsnag/source-maps": "^2.3.1"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.3.3",
"@stencil/core": "^2.1.1",
"@stencil/router": "^1.0.1",
"@stencil/sass": "^1.5.2",
"@stencil/store": "^1.3.0",
"@types/googlemaps": "^3.40.2",
"@types/jest": "26.0.15",
"@types/node": "^14.14.2",
"@types/puppeteer": "3.0.2",
"dotenv": "^8.2.0",
"jest": "26.6.1",
"jest-cli": "26.6.1",
"npm-check-updates": "^16.14.4",
"prettier": "^2.1.2",
"puppeteer": "^13.1.3",
"rimraf": "^3.0.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"tslint": "^6.1.2",
"typescript": "^4.0.3",
"workbox-build": "^7.0.0"
}
}