forked from subtirelumihail/react-fullpage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (45 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·45 lines (45 loc) · 1.38 KB
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
{
"name": "react-fullpage",
"version": "0.1.17",
"description": "An implementation of fullpage.js in react based on react-fullpage",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "babel src --out-dir dist",
"start": "node example/server.js",
"dev": "babel src --out-dir dist --watch",
"clean": "rm -rf dist && rm example/bundle.js",
"build": "npm run release && node ./node_modules/webpack/bin/webpack.js --progress --colors --config example/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/subtirelumihail/react-fullpage"
},
"keywords": [
"react",
"fullpage.js"
],
"author": "Subtirelu Mihail",
"license": "ISC",
"bugs": {
"url": "https://github.com/subtirelumihail/react-fullpage/issues"
},
"homepage": "https://github.com/subtirelumihail/react-fullpage",
"dependencies": {
"prop-types": "^15.6.0",
"react": "16.2.0",
"react-dom": "16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.36",
"@babel/core": "7.0.0-beta.36",
"@babel/node": "7.0.0-beta.36",
"@babel/preset-env": "7.0.0-beta.36",
"@babel/preset-react": "7.0.0-beta.36",
"@babel/preset-stage-2": "7.0.0-beta.36",
"babel-loader": "8.0.0-beta.0",
"css-loader": "0.28.7",
"webpack": "3.10.0",
"webpack-dev-server": "2.9.7"
}
}