-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 3.19 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "wardrobe",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.0.2",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.9",
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.9.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"antd": "^4.0.2",
"babel-plugin-import": "^1.13.0",
"bootstrap": "^4.4.1",
"canvas": "^2.6.1",
"customize-cra": "^0.9.1",
"cypress": "^4.5.0",
"cypress-file-upload": "^4.0.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"fake-indexeddb": "^3.0.0",
"firebase": "^7.14.0",
"firebase-mock": "^2.3.2",
"firebase-tools": "^7.14.0",
"jest-canvas-mock": "^2.2.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"lodash": "^4.17.15",
"mobx": "^5.15.4",
"mobx-react": "^6.1.8",
"prettier": "^1.19.1",
"rc-tween-one": "^2.6.8",
"react": "^16.13.0",
"react-app-rewired": "^2.1.5",
"react-dom": "^16.13.0",
"react-image-lightbox": "^5.1.1",
"react-rnd": "^10.1.8",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"react-spinners": "^0.8.1",
"react-webcam": "^5.0.1",
"reactjs-popup": "^1.5.0",
"sass": "^1.26.3",
"styled-components": "^5.0.1",
"stylelint": "^13.2.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.16.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "npm run firebase && react-app-rewired build",
"test": "react-app-rewired test",
"e2e": "cypress open",
"format": "prettier --write '**/*.{js,ts,css,scss,html}'",
"lint": "eslint '**/*.{js,ts}'",
"firebase": "cd functions && npm i && cd .. && firebase deploy --token \"$FIREBASE_TOKEN\" -f"
},
"jest": {
"testEnvironmentOptions": {
"resources": "usable"
},
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/",
"!<rootDir>/src/serviceWorker.js",
"!<rootDir>/src/firebase.js",
"!<rootDir>/src/index.js",
"!<rootDir>/src/test-utils.js",
"!<rootDir>/src/utils/image-processing.js",
"!<rootDir>/src/components/ClothesIndex.js",
"!<rootDir>/src/components/ClothesDetail.js",
"!<rootDir>/src/components/Random.js",
"!<rootDir>/src/components/MyFavorites.js",
"!<rootDir>/src/components/MyFavoritesEdit.js",
"!<rootDir>/src/components/Design.js",
"!<rootDir>/src/components/Login.js",
"!<rootDir>/src/components/SignUp.js",
"!<rootDir>/src/components/DesignComponent.js"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}