forked from subtirelumihail/react-fullpage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.22 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
{
"name": "react-fullpage",
"version": "0.1.1",
"description": "An implementation of fullpage.js in react",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "./node_modules/babel/bin/babel.js src --out-dir dist",
"start": "node example/server.js",
"dev": "./node_modules/babel/bin/babel.js src --out-dir dist --watch",
"clean": "rm -rf dist && rm example/bundle.js",
"build": "npm run clean && npm run release && ./node_modules/webpack/bin/webpack.js --progress --colors --config example/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/subtirelumihail/react-fullpage.git"
},
"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#readme",
"dependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"css-loader": "^0.19.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
}
}