-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.51 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
{
"name": "caramel",
"version": "1.0.0",
"description": "coreml.store",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "rollup -w -c",
"build": "rollup -c rollup.config.build.js",
"mv-static": "sudo cp -avr dist /var/www/",
"bmv": "npm run build && npm run mv-static",
"db": "babel-node content/generate_db.js",
"update": "git stash && git pull && npm install && npm run bmv",
"generate_pic": "babel-node content_generator/index.js",
"upload_pic": "aws s3 sync content_generator/output_pic s3://coreml-assets --acl public-read"
},
"author": "hong",
"license": "UNLICENSED",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"classnames": "^2.2.5",
"modular-css-rollup": "^6.0.2",
"rollup": "^0.48.2",
"rollup-plugin-alias": "^1.3.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.2.1",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-stylus": "^1.0.3",
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.1.1"
},
"dependencies": {
"lodash": "^4.17.4",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-helmet": "^5.2.0",
"react-portal": "^3.1.0",
"react-router-dom": "^4.2.2"
}
}