-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
{
"name": "react-fullpage",
"version": "0.1.19",
"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": {
"babel-preset-stage-2": "^6.24.1",
"react": "16.4.2",
"react-dom": "16.4.2"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-loader": "6.2.7",
"babel-preset-es2015": "6.18.0",
"babel-preset-latest": "6.16.0",
"babel-preset-react": "6.16.0",
"css-loader": "0.25.0",
"webpack": "1.12.2",
"webpack-dev-server": "1.12.0"
}
}