-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 KB
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
{
"name": "dazz",
"description": "Atravez da inteligencia artificial de forma simples e eficaz buscar looks para diversas situações do dia a dia.",
"version": "1.0.0",
"private": true,
"main": "./app.js",
"scripts": {
"dev": "node app.js --dev",
"verbose": "node app.js --prod",
"prod": "node app.js --prod",
"start": "node app.js"
},
"dependencies": {
"async": "^2.0.0-rc.6",
"express-mysql-session": "^1.1.1",
"lodash": "^4.13.1",
"mysql": "^2.11.1",
"watson-developer-cloud": "^1.9.4",
"we-core": "^1.8.3",
"we-plugin-acl": "^1.2.4",
"we-plugin-auth": "^1.1.3",
"we-plugin-bootstrap3": "^1.0.0",
"we-plugin-email": "^1.1.0",
"we-plugin-form": "^1.1.0",
"we-plugin-menu": "^1.3.0",
"we-plugin-passport-facebook": "^1.1.0",
"we-plugin-user": "^1.1.0",
"we-plugin-view": "^1.1.1",
"we-theme-cluster": "^1.0.13",
"we-theme-dazz": "*",
"we-plugin-file": "^1.3.4",
"we-plugin-file-local": "^1.1.1",
"we-plugin-vocabulary": "^1.1.0",
"we-theme-admin-default": "^1.0.1"
},
"devDependencies": {
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"supertest": "^1.2.0",
"we-test-tools": "^0.3.17"
},
"wejs": {
"plugins": {
"we-plugin-acl": true,
"we-plugin-auth": true,
"we-plugin-user": true,
"we-plugin-passport-facebook": true,
"we-plugin-view": true,
"we-plugin-menu": true,
"we-plugin-bootstrap3": true,
"we-plugin-form": true,
"we-plugin-email": true,
"we-plugin-file": true,
"we-plugin-file-local": true,
"we-plugin-vocabulary": true
},
"devPlugins": {}
}
}