-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.54 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
{
"name": "exchangejs.com",
"version": "0.2.0",
"description": "Exchange JS website",
"keywords": [
"Edmonton",
"javascript",
"development"
],
"license": "MIT",
"author": "Exchange JS",
"repository": {
"type": "git",
"url": "https://github.com/ExchangeJS/exchangejs.com"
},
"scripts": {
"build": "parcel build *.html && npm run moveStatic",
"dev": "parcel serve index.html",
"start": "npm run dev",
"test": "npm run formatCheck",
"formatCheck": "prettier -c 'css/**/*.{css,scss}' 'js/*.js' '!js/vendor/**/*.js' '**/*.html' '!dist/**/*'",
"format": "prettier -w 'css/**/*.{css,scss}' 'js/*.js' '!js/vendor/**/*.js' '**/*.html' '!dist/**/*'",
"moveStatic": "cp static/* dist"
},
"devDependencies": {
"@parcel/optimizer-cssnano": "^2.0.0-nightly.605",
"@parcel/optimizer-htmlnano": "^2.0.0-nightly.605",
"@parcel/packager-css": "^2.0.0-nightly.605",
"@parcel/packager-html": "^2.0.0-nightly.605",
"@parcel/packager-raw-url": "^2.0.0-nightly.2227",
"@parcel/transformer-css": "^2.0.0-nightly.605",
"@parcel/transformer-html": "^2.0.0-nightly.605",
"@parcel/transformer-postcss": "^2.0.0-nightly.605",
"@parcel/transformer-posthtml": "^2.0.0-nightly.605",
"@parcel/transformer-sass": "^2.0.0-nightly.605",
"@parcel/transformer-webmanifest": "^2.0.0-nightly.2227",
"parcel": "^2.0.0-nightly.603",
"postcss": "^8.2.10",
"prettier": "^2.2.1",
"sass": "^1.32.7"
},
"dependencies": {
"bulma": "^0.9.2"
},
"prettier": {
"printWidth": 120
}
}