-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 848 Bytes
/
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
{
"name": "personas",
"version": "0.1.4",
"main": "index.ts",
"repository": "[email protected]:petrkrejcik/personas.git",
"author": "Petr Krejčík <[email protected]>",
"license": "MIT",
"scripts": {
"start": "parcel src/index.html",
"build": "rm -rf docs && parcel build src/index.html --out-dir docs --public-url /Personas/",
"test": "npx cypress open",
"test-headless": "npx cypress run",
"lint": "npx eslint ./src",
"ts": "npx tsc"
},
"browserslist": [
"last 1 Chrome version"
],
"devDependencies": {
"@types/gapi": "0.0.39",
"@types/gapi.auth2": "0.0.50",
"@types/gapi.client": "^1.0.1",
"@types/gapi.client.drive": "^3.0.3",
"babel-eslint": "^10.0.3",
"cypress": "^3.7.0",
"eslint": "^6.7.2",
"parcel-bundler": "^1.12.3",
"typescript": "^3.7.3"
}
}