-
Notifications
You must be signed in to change notification settings - Fork 179
/
package.json
73 lines (73 loc) · 2.5 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
{
"name": "@fullpage/react-fullpage",
"version": "0.1.45",
"description": "Official react wrapper for fullPage.js",
"author": "cmswalker",
"contributors": [
"cmswalker",
"alvarotrigo"
],
"main": "./dist/react-fullpage.js",
"license": {
"license": "GPL-3.0",
"url": "https://www.gnu.org/licenses/gpl-3.0.html"
},
"homepage": "https://github.com/alvarotrigo/react-fullpage",
"types": "types/index.d.ts",
"scripts": {
"dev": "export SET NODE_OPTIONS=--openssl-legacy-provider && cross-env NODE_ENV=dev webpack-dev-server --progress --mode development --config webpack.config.dev.js",
"build:dev": "export SET NODE_OPTIONS=--openssl-legacy-provider && npx webpack --progress --mode development --config webpack.config.dev.js",
"build": "export SET NODE_OPTIONS=--openssl-legacy-provider && NODE_ENV=prod webpack --mode production --progress --mode production --config webpack.config.build.js",
"test:cypress": "npx cypress run --spec 'cypress/integration/*'",
"test:jest": "npx jest",
"cypress:open": "cypress open"
},
"repository": {
"type": "git",
"url": "https://github.com/alvarotrigo/react-fullpage"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"babel-eslint": "^10.0.1",
"babel-jest": "^27.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"clean-webpack-plugin": "4.0.0",
"cross-env": "7.0.3",
"css-loader": "6.2.0",
"cypress": "^8.3.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.3.2",
"jest": "^27.1.0",
"jest-dom": "^3.0.1",
"kcd-scripts": "^11.2.0",
"node-sass": "6.0.1",
"prettier": "^2.3.2",
"prettier-eslint": "^13.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-testing-library": "^5.4.4",
"sass-loader": "12.1.0",
"style-loader": "3.2.1",
"url-loader": "4.1.1",
"webpack": "5.52.0",
"webpack-cli": "4.8.0",
"webpack-dev-server": "4.1.0",
"webpack-merge": "5.8.0"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"fullpage.js": "^4.0.30"
}
}