-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.1 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
{
"name": "emoji-domain",
"version": "0.0.0",
"description": "Website for my emoji domain",
"main": "./src/index.html",
"scripts": {
"dev": "parcel ./src/index.html/",
"prebuild": "rimraf dist",
"build": "parcel build ./src/index.html/ --public-url ./",
"lint": "eslint --ext .js ./src",
"lint-fix": "eslint --fix --ext .js ./src"
},
"author": "SUBHUMAN <sebi.wachter@onlin.de>",
"license": "MIT",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintConfig": {
"extends": [
"airbnb/base"
],
"env": {
"browser": true
},
"rules": {
"no-unused-vars": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
},
"dependencies": {
"three": "^0.118.3"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"parcel": "^1.12.4",
"rimraf": "^3.0.2"
}
}