-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "swapi-gallery",
"version": "1.0.0",
"description": "Star Wars Characters Gallery",
"main": "index.js",
"scripts": {
"clean": "rimraf .cache && rimraf coverage && rimraf dist && rimraf node_modules",
"prebuild": "rimraf dist",
"start:dev": "parcel -p 8765 watch index.html",
"build": "parcel build index.html --public-url ./",
"format": "prettier --write \"js/*.js\" \"styles/*.scss\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/vieraboschkova/swapi-gallery.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vieraboschkova/swapi-gallery/issues"
},
"homepage": "https://github.com/vieraboschkova/swapi-gallery#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"parcel-bundler": "^1.12.5",
"parcel-plugin-static-files-copy": "^2.6.0",
"prettier": "2.3.0",
"rimraf": "^3.0.2",
"sass": "^1.32.13"
},
"dependencies": {
"axios": "^0.21.1",
"html-in-js": "^1.2.1",
"regenerator-runtime": "^0.13.7"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "static",
"staticOutDir": "static"
}
]
}
}