forked from Brmlia/brmlia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.04 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "brmlia",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"dependencies": {
"bootstrap": "^4.4.1",
"csvtojson": "^2.0.10",
"fabric": "^3.6.3",
"jest": "24.9.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"react": "^16.13.0",
"react-color": "^2.18.0",
"react-dom": "^16.13.0",
"react-dropzone": "^10.2.1",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.0",
"react-three-fiber": "^4.0.20",
"react-zoom-pan-pinch": "^1.6.1",
"reactcss": "^1.2.3",
"reactstrap": "^8.4.1",
"three": "^0.114.0",
"utif": "^3.1.0",
"zustand": "^2.2.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test:coverage": "npm run test -- --coverage",
"format": "prettier --write \"**/*.+(js|json|css)\"",
"eject": "react-scripts eject"
},
"babel": {
"presets": [
"react-app"
]
},
"jest": {
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2|jpeg)$": "identity-obj-proxy"
}
},
"devDependencies": {
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.3",
"gh-pages": "^2.2.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Brmlia/brmlia.git"
},
"author": "",
"homepage":"https://brmlia.github.io/brmlia/",
"license": "ISC",
"bugs": {
"url": "https://github.com/Brmlia/brmlia/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md,css,html}": [
"prettier --trailing-comma es5 --single-quote --write"
],
"*.json": [
"prettier --write"
],
"yarn.lock": [
"git rm --cached"
],
"package-lock.json": [
"git rm --cached"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}