-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.06 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.06 KB
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
{
"name": "freesound",
"version": "0.1.0",
"description": "Freesound, the cool stuff",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"clean": "rm -rf freesound/static/bw-frontend/dist",
"build": "npm run clean && node freesound/static/bw-frontend/build.js",
"build:stats": "npm run build && ls -lh freesound/static/bw-frontend/dist/",
"dev": "parcel watch freesound/static/bw-frontend/src/index.js freesound/static/bw-frontend/src/index-dark.js freesound/static/bw-frontend/src/pages/*.js --dist-dir freesound/static/bw-frontend/dist --public-url /static/bw-frontend/dist",
"format": "prettier --write \"freesound/static/bw-frontend/src/**/*.{js,jsx}\" \"freesound/static/bw-frontend/styles/**/*.{scss,css}\"",
"format:check": "prettier --check \"freesound/static/bw-frontend/src/**/*.{js,jsx}\" \"freesound/static/bw-frontend/styles/**/*.{scss,css}\"",
"prettier": "npm run format",
"lint": "eslint freesound/static/bw-frontend/src",
"lint:fix": "eslint freesound/static/bw-frontend/src --fix",
"eslint": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MTG/freesound.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MTG/freesound/issues"
},
"homepage": "https://github.com/MTG/freesound#readme",
"devDependencies": {
"@parcel/core": "^2.13.3",
"@parcel/transformer-sass": "^2.13.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.3.3",
"sass": "^1.85.1",
"svgo": "^3.3.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.3.1",
"classlist-polyfill": "^1.2.0",
"core-js": "^3.6.1",
"element-closest": "^3.0.1",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"normalize.css": "^8.0.1",
"parcel": "^2.13.3",
"regenerator-runtime": "^0.13.3",
"sass-migrator": "^2.3.1",
"ua-parser-js": "^1.0.37",
"whatwg-fetch": "^3.0.0"
}
}