-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.78 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
{
"name": "giphy-party",
"version": "1.0.0",
"description": "A webpage where you can search gifs provided by GIPHY.",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test:dev": "jest --watch",
"test:ui": "run-p serve test:cypress",
"test:ui:dev": "run-p serve test:cypress:dev",
"test:cypress": "cypress run",
"test:cypress:dev": "cypress open",
"serve": "http-server ./dist -c-1",
"gulp": "cross-env NODE_ENV=production gulp",
"gulp:dev": "cross-env NODE_ENV=development gulp",
"gulp:build": "cross-env WATCH=false gulp build",
"gulp:deploy": "cross-env WATCH=false gulp deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.11.0",
"@types/jest": "^26.0.20",
"babel-jest": "^26.3.0",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"cypress": "^6.2.1",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"gh-pages": "^3.1.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^4.3.0",
"gulp-gh-pages": "git+https://github.com/shinnn/gulp-gh-pages.git",
"gulp-noop": "^1.0.1",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.0.1",
"gulp-webserver": "^0.9.1",
"http-server": "^0.12.3",
"jest": "^26.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"vinyl-source-stream": "^2.0.0",
"webpack": "^5.15.0",
"webpack-stream": "^6.1.1"
},
"browserslist": [
"defaults"
]
}