-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.15 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
{
"name": "1calle1nombre",
"version": "1.1.7",
"description": "Visor #1calle1nombre",
"scripts": {
"start": "BUILD=$(date +%s) parcel serve './src/**/*.html' --open",
"prebuild": "npm run lint:fix && rm -rf ./dist/*",
"build": "BUILD=$(date +%s) parcel build ./src/index.html --public-url .",
"lint": "eslint 'src/**/*.js' || stylelint 'src/**/*.css'",
"lint:fix": "eslint 'src/**/*.js' --fix || stylelint 'src/**/*.css' --fix",
"deploy": "npm run build && gh-pages -d dist -r [email protected]:Crashillo/1calle1nombre.git"
},
"repository": {
"type": "git",
"url": "[email protected]:Crashillo/1calle1nombre.git"
},
"author": "Crashillo",
"license": "ISC",
"dependencies": {
"d3": "^7.8.5",
"d3-composite-projections": "^1.4.0",
"topojson-client": "^3.1.0"
},
"devDependencies": {
"@parcel/optimizer-data-url": "^2.10.0",
"@parcel/resolver-glob": "^2.10.0",
"@parcel/transformer-inline-string": "^2.10.0",
"eslint": "^8.51.0",
"gh-pages": "^5.0.0",
"parcel": "^2.10.0",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^33.0.0"
},
"alias": {
"d3": "d3/dist/d3.js"
}
}