-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
24 lines (24 loc) · 881 Bytes
/
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
{
"name": "workshop-use-gesture",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/peeke/workshop-use-gesture.git",
"author": "Peeke Kuepers <[email protected]>",
"license": "MIT",
"dependencies": {
"@kaliber/build": "^0.0.132",
"@kaliber/math": "^1.1.3",
"@react-spring/web": "^9.5.5",
"@use-gesture/react": "^10.2.21"
},
"scripts": {
"start": "npm-run-all --parallel watch serve.dev",
"watch": "CONFIG_ENV=dev kaliber-watch",
"build": "NODE_ENV=production kaliber-build",
"serve": "kaliber-serve",
"serve.dev": "PORT=8000 CONFIG_ENV=dev kaliber-serve",
"lint": "npm-run-all --serial lint.javascript lint.styles",
"lint.javascript": "eslint -c .eslintrc --ignore-path .gitignore './**/*.js'",
"lint.styles": "stylelint --config .stylelintrc --ignore-path .gitignore './**/*.css'"
}
}