-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.86 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
{
"name": "swipeable-bottom-sheet",
"version": "0.0.0",
"description": "Smooth Swipeable Bottom Sheet",
"keywords": [
"bottom-sheet"
],
"homepage": "https://github.com/timelessco/swipeable-bottom-sheet#readme",
"bugs": {
"url": "https://github.com/timelessco/swipeable-bottom-sheet/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timelessco/swipeable-bottom-sheet.git"
},
"license": "MIT",
"author": "Timeless <hello@timeless.co>",
"scripts": {
"build": "npm run clean:dist && npm run build:parcel",
"build:parcel": "parcel build src/examples/index.html --public-url ./",
"clean": "npm run clean:dist && npm run clean:cache",
"clean:cache": "rm -rf .cache/*",
"clean:dist": "rm -rf dist/*",
"commit": "gacp",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"format": "prettier --write \"./**/*.{js,ts,css,less,json,md,html,yml,yaml,pcss,jsx,tsx}\"",
"format:package": "sort-package-json",
"lint": "eslint src --ext .js --fix",
"lint:css": "stylelint 'src/**/*.css'",
"start": "parcel src/examples/index.html --open"
},
"browserslist": [
"last 1 Chrome version"
],
"dependencies": {
"body-scroll-lock": "3.1.5"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"all-contributors-cli": "^6.17.4",
"eslint": "7.9.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"gacp": "2.10.0",
"husky": "4.3.0",
"lint-staged": "10.4.0",
"parcel-bundler": "1.12.4",
"prettier": "2.1.2",
"sort-package-json": "1.46.0",
"stylelint": "13.7.1",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "20.0.0"
}
}