-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "rc-fullpage",
"version": "0.1.3",
"description": "A fullpage component in React!",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node demo/server.js",
"release": "./node_modules/babel/bin/babel.js src --out-dir lib",
"dev": "./node_modules/babel/bin/babel.js src --out-dir lib --watch",
"clean": "rm -rf lib && 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/dodospace/react-full-page.git"
},
"keywords": [
"fullpage",
"react"
],
"author": "Shaohua.Gu",
"_qq": "200888162",
"_email": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/dodospace/react-full-page/issues"
},
"homepage": "https://github.com/dodospace/react-full-page#readme",
"dependencies": {
"react": "^15.3.0",
"react-dom": "^15.3.0"
},
"devDependencies": {
"babel": "^5.8.38",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"css-loader": "^0.23.1",
"jquery": "^3.1.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}