-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 1.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "visicality",
"private": true,
"version": "1.0.0",
"description": "Music Visualizer built w/ JavaScript, D3.js and Web Audio API",
"type": "module",
"engines": {
"node": ">= 16.0.0",
"npm": ">= 8.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"eslint": "eslint . --ext .js --fix --ignore-path .gitignore",
"lint": "concurrently --raw npm:eslint npm:prettier",
"prettier": "prettier \"**/*.{html,json,md}\" --write --ignore-path .gitignore",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/derekwolpert/Visicality.git"
},
"author": "Derek Wolpert <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/derekwolpert/Visicality/issues"
},
"homepage": "https://github.com/derekwolpert/Visicality#readme",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.1.2",
"@fortawesome/free-brands-svg-icons": "^6.1.2",
"@fortawesome/free-regular-svg-icons": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"d3": "^7.6.1",
"fscreen": "^1.2.0"
},
"devDependencies": {
"autoprefixer": "^10.4.8",
"concurrently": "^7.3.0",
"eslint": "^8.21.0",
"eslint-config-standard": "^17.0.0",
"prettier": "^2.7.1",
"sass": "^1.54.3",
"vite": "^3.0.4"
},
"browserslist": [
"> 2% in US and last 2 versions and supports es6-module",
"not dead"
],
"eslintConfig": {
"root": true,
"env": {
"browser": true
},
"parserOptions": {
"ecmaVersion": 2022
},
"extends": [
"eslint:recommended",
"standard"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
}
}