-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·45 lines (45 loc) · 1.29 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
{
"name": "Travlr",
"version": "1.0.0",
"description": "Travel smarter by saving the places you want to go",
"main": "index.js",
"repository": "https://github.com/vai0/travlr",
"scripts": {
"clean": "rm -rf ./dist/*",
"start": "webpack-dev-server --progress",
"build": "./node_modules/.bin/webpack --config webpack.config.js -p --progress",
"upload": "scp -r ./dist/* [email protected]:/var/www/html/travlr"
},
"author": "Justin Chi",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"css-loader": "^0.28.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.2",
"path": "^0.12.7",
"sass-loader": "^6.0.3",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"axios": "0.18.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-rating": "^0.8.1",
"react-redux": "4.3.0",
"redux": "^3.0.4",
"redux-logger": "^3.0.6",
"redux-persist": "^4.8.3",
"redux-thunk": "^2.2.0",
"spinkit": "^1.2.5"
}
}