-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
23 lines (23 loc) · 846 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
{
"name": "workshop-forces-and-vectors",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/peeke/workshop-forces-and-vectors.git",
"author": "Peeke Kuepers <[email protected]>",
"license": "MIT",
"dependencies": {
"@kaliber/build": "^0.0.126",
"react-spring": "^9.4.5",
"three": "^0.141.0"
},
"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'"
}
}