forked from nikgraf/webvr-experiments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 723 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 723 Bytes
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
{
"name": "webvr-expriments",
"version": "0.0.0",
"description": "A collection of WebVR experiments",
"repository": "git@github.com:nikgraf/webvr-expriments.git",
"author": "Nik Graf <nik@nikgraf.com>",
"license": "MIT",
"scripts": {
"precommit": "lint-staged",
"lint": "eslint ."
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^7.2.2",
"eslint": "^3.19.0",
"eslint-config-prettier": "^1.6.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"husky": "^0.13.3",
"lint-staged": "^3.4.0",
"prettier-eslint": "^5.1.0",
"prettier-eslint-cli": "^3.3.0"
}
}