-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.72 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
{
"name": "Toki",
"version": "1.0.0",
"description": "Attention management for your team",
"main": "./build/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-babel": "babel src/ -d build/ -s",
"watch-babel": "babel -w src/ -d build/ -s",
"build-css": "node-sass src/app/scss/ -d -o build/public/css",
"watch-css": "node-sass -w src/app/scss/ -d -o build/public/css/",
"compile": "babel src/ -d build -s && node-sass src/app/scss/ -d -o build/public/css && sequelize db:migrate",
"prepare-production": "sequelize db:migrate --env=production && pm2 stop server && pm2 start server",
"start": "node ./build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kevinsuh/toki.git"
},
"author": "Kevin Suh",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinsuh/toki/issues"
},
"homepage": "https://tokibot.com",
"dependencies": {
"babel-plugin-transform-react-jsx": "^6.8.0",
"bluebird": "^3.4.5",
"body-parser": "^1.15.1",
"bootstrap": "^3.3.6",
"botkit": "^0.2.2",
"botkit-middleware-witai": "https://github.com/kevinsuh/botkit-middleware-witai.git",
"cron": "^1.1.0",
"dotenv": "^2.0.0",
"ejs": "^2.4.2",
"express": "^4.13.4",
"jquery": "^3.1.0",
"lodash": "^4.15.0",
"moment": "^2.13.0",
"moment-timezone": "^0.5.4",
"nlp_compromise": "^6.5.0",
"pg": "^5.0.0",
"pg-hstore": "^2.3.2",
"request": "^2.72.0",
"sequelize": "^3.23.3",
"sequelize-cli": "^2.4.0",
"superagent": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"node-sass": "^3.7.0"
}
}