-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.85 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "ar-place",
"version": "0.0.1",
"description": "A community-driven art canvas where every user can place a pixel in a color of their choice",
"private": true,
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack",
"eslint:fix": "eslint --fix \"*.config.js\" \"src/**/*.js\"",
"prettier:write": "prettier --write \".eslintrc.js\" \"*.config.js\" \"src/**/*.{js,css,html}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js!eslintrc.js": "eslint --max-warnings=0",
"*.{js,css,html}": "prettier --list-different"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NUVR/AR-place.git"
},
"keywords": [
"augmented",
"reality",
"ar",
"ar.js",
"vr",
"webvr"
],
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"author": "NUVR",
"license": "MIT",
"bugs": {
"url": "https://github.com/NUVR/AR-place/issues"
},
"homepage": "https://github.com/NUVR/AR-place#readme",
"dependencies": {
"ar.js": "^2.1.5",
"core-js": "^3.6.4",
"three": "^0.113.2"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-transform-strict-mode": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"exports-loader": "^0.7.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"style-loader": "^1.1.3",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}