-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
63 lines (63 loc) · 1.95 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
{
"name": "@ap.cx/react-fullpage",
"version": "0.3.0",
"description": "Create Beautiful Fullscreen Scrolling Websites",
"author": "thierryc",
"license": "MIT",
"repository": "thierryc/react-fullpage",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -m -w",
"prepare": "npm run build",
"lint": "node_modules/eslint/bin/eslint.js 'src/**/*' --fix",
"predeploy": "cd gh-pages && git pull && npm install && npm run build",
"deploy": "gh-pages -d gh-pages/build"
},
"dependencies": {
"prop-types": "^15.5.4",
"react": "^16.6.0",
"react-dom": "^16.6.0"
},
"peerDependencies": {
"prop-types": "^15.5.4",
"react": "^16.6.0",
"react-dom": "^16.6.0"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-external-helpers": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.3",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-airbnb": "^5.0.0",
"cross-env": "^7.0.0",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.20.0",
"gh-pages": "^3.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"rollup": "^2.33.3",
"rollup-plugin-babel": "^4.0.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^3.0.0",
"rollup-plugin-url": "^3.0.0"
},
"files": [
"dist"
]
}