This repository has been archived by the owner on Aug 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.68 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "vcat",
"version": "1.0.0",
"description": "vcat frontend",
"main": "index.js",
"scripts": {
"watch": "NODE_ENV=development webpack --watch --config ./webpack.config.dev.js --colors",
"build": "NODE_ENV=production webpack --config ./webpack.config.prod.js",
"buildDev": "NODE_ENV=development webpack --config ./webpack.config.dev.js --colors",
"reload": "git pull ; npm run build ; python manage.py collectstatic --noinput",
"deploy": "NODE_ENV=production webpack --config ./webpack.config.prod.js && git commit -am 'deploy' && git push && ssh vframe@vframe ./restart.sh"
},
"directories": {
"doc": "docs"
},
"dependencies": {
"autoprefixer": "7.1.6",
"aws-sdk": "^2.322.0",
"axios": "^0.17.1",
"clamp": "^1.0.1",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^2.0.0",
"connected-react-router": "^4.3.0",
"data-uri-to-buffer": "^2.0.0",
"date-fns": "^1.29.0",
"dotenv": "^6.0.0",
"fetch-jsonp": "^1.1.3",
"history": "^4.7.2",
"konva": "^1.7.6",
"prop-types": "^15.6.1",
"query-string": "^6.2.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-hot-loader": "^4.3.0",
"react-konva": "^1.7.16",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-modal": "^1.3.0",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^4.0.0",
"redux-auth-wrapper": "^2.0.2",
"redux-logger": "^3.0.6",
"redux-persist": "^5.4.0",
"redux-thunk": "^2.3.0",
"spectre.css": "^0.5.1",
"store2": "^2.7.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.1",
"css-loader": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.0.4",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "3.x.x",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "2.x.x",
"webpack-manifest-plugin": "1.3.2",
"whatwg-fetch": "2.0.3"
},
"repository": {
"type": "git",
"url": "git@github.comvframeio/vcat.git"
},
"author": "vframe <research@vframe.io>",
"license": "MIT"
}