forked from FoundersAS/walkiebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.63 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "walkiebot",
"repository": {
"type": "git",
"url": "git@github.com:FoundersAS/walkiebot.git"
},
"version": "1.0.0",
"description": "",
"main": "./server/index.js",
"scripts": {
"clean": "rm -rf ./dist",
"clean-db": "docker-compose stop -t 0 && docker-compose rm -f",
"delay-api": "sleep 10 && nodemon -e ejs,js ./server --ignore ./src",
"ngrok": "node bin/start-ngrok.js",
"dev": "bin/start-dev.sh",
"copy-icons": "cp -r src/static/icons dist/static",
"build-prod": "npm run clean && webpack --config webpack.config.prod.js --progress && npm run copy-icons",
"test-styles": "semistandard",
"test-redux": "mocha --compilers js:babel-register --recursive",
"test-redux-watch": "npm run test-redux -- --watch",
"test": "npm run test-styles && npm run test-redux",
"postinstall": "npm run build-prod",
"start-dev": "node ./devserver",
"start": "node ./server"
},
"author": "kasper@founders.as",
"license": "ISC",
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.1",
"css-loader": "^0.28.7",
"expect": "^1.20.2",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"lodash": "^4.17.4",
"mocha": "^3.0.0",
"ngrok": "^2.2.9",
"node-sass": "^4.6.1",
"nodemon": "^1.11.0",
"normalize.css": "^4.2.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-loader": "^2.0.8",
"sass-loader": "^6.0.6",
"semistandard": "^11.0.0",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"webpack-notifier": "^1.3.0"
},
"dependencies": {
"array-shuffle": "^1.0.1",
"async.each": "^0.5.2",
"axios": "^0.14.0",
"babel-plugin-add-react-displayname": "0.0.3",
"boom": "^4.3.1",
"classnames": "^2.2.5",
"deepcopy": "^0.6.3",
"ejs": "^2.5.2",
"emoji-datasource-apple": "^4.0.4",
"emoji-mart": "^1.0.0",
"emoji-regex": "^6.1.0",
"emoji-shortname-to-image": "^1.2.3",
"filesize": "^3.5.10",
"flat": "^2.0.1",
"flatten-obj": "^3.0.0",
"h2o2": "^5.2.0",
"hapi": "^13.5.2",
"hapi-auth-jwt2": "^7.2.4",
"hapi-heroku-helpers": "^3.0.0",
"immutable": "^3.8.1",
"inert": "^4.0.1",
"is-url": "^1.2.2",
"javascript-stringify": "^1.4.0",
"joi": "^9.0.4",
"joi-browser": "^9.0.4",
"jsonwebtoken": "^7.4.0",
"jwt-decode": "^2.2.0",
"load-environment": "^2.0.0",
"map-async": "^0.1.1",
"moment": "^2.14.1",
"mongojs": "^2.4.0",
"omit-empty": "^0.4.1",
"parse-json": "^2.2.0",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-color": "^2.13.8",
"react-custom-scrollbars": "^4.0.0",
"react-dom": "^16.1.1",
"react-hot-loader": "^3.1.3",
"react-redux": "^4.4.5",
"react-router": "^3.2.0",
"react-textarea-autosize": "^4.0.5",
"react-transition-group": "^1.1.3",
"react-youtube": "^7.5.0",
"redux": "^3.5.2",
"redux-actions": "^0.10.1",
"redux-thunk": "^2.1.0",
"reselect": "^3.0.1",
"scroll-into-view": "^1.9.0",
"slug": "^0.9.1",
"socket.io": "^2.0.4",
"superagent": "^2.1.0",
"uuid": "^3.1.0",
"validate.js": "^0.10.0",
"vision": "^4.1.0"
},
"browser": {
"joi": "joi-browser"
},
"semistandard": {
"ignore": [
"**/node_modules/"
]
}
}