-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 801 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 801 Bytes
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": "vqbc.github.io",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"start": "parcel index.html --open",
"build": "parcel build index.html"
},
"dependencies": {
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.12"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"node-forge": "^1.3.1",
"parcel-bundler": "^1.3.1",
"stylelint": "^13.13.1",
"stylelint-config-rational-order": "^0.0.4",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0"
},
"keywords": [],
"stylelint": {
"extends": "stylelint-config-rational-order",
"rules": {
"property-no-unknown": [
true,
{
"ignoreAtRules": [
"counter-style"
]
}
]
}
}
}