-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.99 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
{
"name": "Gamify-Education",
"version": "0.0.1",
"description": "Thesis Project",
"main": "./www/app.js",
"scripts": {
"postinstall": "bower install && typings install && npm run build",
"start": "node ./www/app.js",
"start:watch": "concurrently \"npm run watch:client\" \"npm run watch:server\" \"npm run watch:build\"",
"build": "npm run build:client && npm run build:server",
"build:client": "webpack --colors --config webpack.config.client.production.js",
"watch:client": "webpack --colors --config webpack.config.client.dev.js --watch",
"build:server": "tsc ./server/app.ts --outDir ./www/",
"build:langs": "babel-node client/helpers/translator.js",
"watch:server": "tsc ./server/app.ts --outDir ./www/ --watch",
"watch:build": "nodemon ./www/app.js",
"test": "npm run test:server",
"test:server": "./node_modules/tslint/bin/tslint ./server/**/*.ts && ./node_modules/mocha/bin/mocha ./www/tests/**/*.js"
},
"author": "Luis E. Rojas <lrojas94@gmail.com>, Manuel E. Urena, Frankie Garabito",
"license": "ISC",
"dependencies": {
"axios": "0.12.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"body-parser": "1.15.1",
"bower": "1.7.9",
"chart.js": "^1.1.1",
"cors": "2.7.1",
"express": "4.13.4",
"griddle-react": "^0.6.1",
"immutable": "^3.8.1",
"jquery": "2.2.4",
"json-loader": "0.5.4",
"jsonwebtoken": "7.0.1",
"lodash": "4.13.1",
"mathquill": "git+https://github.com/luxp/mathquill-webpack.git",
"moment": "^2.15.0",
"node-fetch": "1.5.3",
"observe": "^1.3.7",
"passport": "0.3.2",
"passport-jwt": "2.0.0",
"pg": "4.5.6",
"pg-hstore": "2.3.2",
"random-material-color": "^1.0.2",
"react": "^15.4.0",
"react-chartjs": "^0.8.0",
"react-chartjs-2": "^1.5.1",
"react-dom": "^15.4.0",
"react-intl": "^2.1.5",
"react-intl-redux": "^0.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "4.0.5",
"react-select": "^1.0.0-rc.2",
"react-sidebar": "^2.2.1",
"redux": "3.5.2",
"redux-actions": "0.10.0",
"redux-logger": "^2.6.1",
"redux-thunk-fsa": "3.0.2",
"request-promise": "3.0.0",
"script-loader": "0.7.0",
"sequelize": "3.23.3",
"serve-static": "1.10.3",
"ts-loader": "0.8.2",
"typescript": "1.8.10",
"typings": "1.3.0",
"webpack": "1.13.1"
},
"devDependencies": {
"babel-plugin-react-intl": "^2.2.0",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"concurrently": "2.1.0",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"gulp": "3.9.1",
"gulp-inject": "4.1.0",
"mocha": "2.5.3",
"node-sass": "^3.11.2",
"nodemon": "1.9.2",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"tslint": "3.11.0",
"webpack": "^1.13.1"
}
}