-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.16 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
{
"name": "hye.life",
"version": "0.0.1",
"description": "The code behind hye.life",
"engineStrict": true,
"engines": {
"node": "^7.5.0",
"npm": "^4.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/fxfactorial/hye-life.git"
},
"dependencies": {
"express": "^4.15.2",
"fb": "^1.1.1",
"helmet": "^3.5.0",
"moment-timezone": "^0.5.11",
"morgan": "^1.8.1",
"react": "^15.4.2",
"react-big-calendar": "^0.12.3",
"react-dom": "^15.4.2",
"react-slick": "^0.14.7",
"request-promise": "^4.1.1",
"serve-favicon": "^2.4.1",
"sqlite3": "^3.1.8",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-3": "^6.22.0",
"json-loader": "^0.5.4",
"nodemon": "^1.11.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
},
"babel": {
"presets": [
"react",
"stage-3"
],
"plugins": [
"transform-es2015-modules-commonjs",
"transform-class-properties"
]
},
"scripts": {
"watch":"node scripts/watch-project.js",
"sass-watch":"sass --watch sass:public",
"babel-watch": "NODE_ENV='debug' babel lib/*.jsx --watch --out-dir .",
"webpack-watch": "NODE_ENV='debug' webpack --progress -d --colors --watch",
"server-watch": "NODE_ENV='debug' nodemon --harmony_async_await backend/server.js",
"prod-build": "NODE_ENV='production' webpack --config webpack.prod.js --progress --colors -p && babel lib/*.jsx --out-dir .",
"setup-dependencies": "sudo aptitude update && sudo aptitude install sqlite3 libsqlite3-dev",
"create-db": "cat backend/setup-database.sql | sqlite3 hye-life.db",
"pull-fb-events-now": "systemctl start fb-query-events"
},
"author": "Edgar Aroutiounian <edgar.factorial@gmail.com>",
"license": "GPL-3.0"
}