-
Notifications
You must be signed in to change notification settings - Fork 241
/
package.json
103 lines (103 loc) · 3.36 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
103
{
"name": "snapchat-clone",
"version": "1.0.0",
"license": "MIT",
"homepage": "https://towhidkashem.github.io/snapchat-clone",
"author": {
"name": "Towhid Kashem",
"email": "[email protected]",
"url": "https://github.com/TowhidKashem"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-regular-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@reduxjs/toolkit": "^1.4.0",
"animate.css": "^3.7.2",
"classnames": "^2.2.6",
"mapbox-gl": "^1.11.1",
"normalize.css": "^8.0.1",
"react": "^16.13.1",
"react-animated-css": "^1.2.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1"
},
"scripts": {
"start": "run-os",
"start:win32": "set HTTPS=true&&set PUBLIC_URL=/&&react-scripts start",
"start:default": "HTTPS=true PUBLIC_URL=/ react-scripts start",
"postinstall": "run-os",
"postinstall:win32": "if not exist public/filters/jeelizFaceFilter (npm run install-filter-deps)",
"postinstall:default": "if [ ! -d 'public/filters/jeelizFaceFilter' ]; then npm run install-filter-deps ; fi",
"install-filter-deps": "cd public/filters && git clone [email protected]:jeeliz/jeelizFaceFilter.git && cd jeelizFaceFilter && git reset --hard bd3cdcd0ca01ced09d836c55af82c36047d82dac && cd ../../../ && gulp",
"cleanup": "rm -rf node_modules build public/filters/jeelizFaceFilter",
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test": "react-scripts test",
"e2e": "cypress open",
"e2e-headless": "cypress run",
"precommit": "pretty-quick --staged && react-scripts test --watchAll=false",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"eject": "react-scripts eject",
"gulp": "gulp"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-env": "^7.10.3",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/preset-create-react-app": "^3.1.1",
"@storybook/react": "^5.3.19",
"@storybook/theming": "^5.3.19",
"@types/classnames": "^2.2.10",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^24.0.0",
"@types/mapbox-gl": "^1.11.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.5",
"cypress": "^4.9.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"gh-pages": "^3.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-terser": "^1.2.0",
"husky": "^4.2.5",
"node-sass": "^4.14.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"run-script-os": "^1.1.1",
"typescript": "4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
}
}