This repository was archived by the owner on Sep 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.06 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.06 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
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
{
"name": "itsquiz-wall",
"version": "0.0.1",
"description": "QuizWall for itsquiz.com",
"author": {
"name": "WebbyLab",
"email": "office@webbylab.com",
"url": "http://webbylab.com"
},
"private": true,
"scripts": {
"build": "NODE_ENV='production' webpack -p",
"start": "NODE_ENV='production' pm2 start server/runner.js --name itsquiz-wall",
"nodemon": "nodemon server/runner.js",
"webpack-devserver": "webpack-dev-server --debug --hot --devtool eval-source-map --output-pathinfo --watch --colors --inline --content-base public --port 8050 --host 0.0.0.0",
"extract_lang": "./bin/extract_lang.sh",
"lint": "eslint shared client server",
"testlint": "npm run lint",
"test": "mocha --compilers js:babel-register --recursive",
"test:watch": "npm test -- --watch",
"po2json": "./bin/po2json.sh",
"stop": "NODE_ENV='production' pm2 delete itsquiz-wall -s &> /dev/null"
},
"dependencies": {
"babel-cli": "^6.7.7",
"babel-polyfill": "^6.7.2",
"bluebird": "^3.0.5",
"body-parser": "^1.15.0",
"classnames": "^2.1.5",
"cookie": "^0.2.3",
"cookie-parser": "^1.4.0",
"expect": "^1.18.0",
"express": "^4.13.3",
"geoip-lite": "^1.1.6",
"history": "^1.13.1",
"isomorphic-fetch": "^2.2.0",
"jed": "^1.1.0",
"lodash": "^3.10.1",
"markdown-it": "^6.0.0",
"moment": "^2.10.6",
"mongoose": "^4.4.13",
"mongoose-q": "^0.1.0",
"qr-image": "^3.1.0",
"query-string": "^3.0.0",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-google-ad": "^1.0.2",
"react-list": "^0.7.14",
"react-mdl": "^1.0.4",
"react-modal": "^0.6.1",
"react-redux": "^3.1.0",
"react-router": "^1.0.2",
"redux": "^3.0.2",
"redux-logger": "^2.0.3",
"redux-router": "^0.1.0",
"redux-thunk": "^1.0.0",
"strformat": "0.0.7",
"chart.js": "^1.1.1",
"react-chartjs": "^0.8.0"
},
"devDependencies": {
"autoprefixer-loader": "*",
"babel": "^6.5.2",
"babel-core": "^6.17.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-react-autoprefix": "^0.2.6",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators": "^6.6.5",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-3": "^6.5.0",
"babel-register": "^6.7.2",
"css-loader": "^0.22.0",
"eslint": "~2.2.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^4.1.0",
"extract-text-webpack-plugin": "^v2.0.0-rc.1",
"file-loader": "^0.8.4",
"html-loader": "^0.4.3",
"json-loader": "^0.5.3",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"markdown-loader": "^0.1.7",
"mocha": "^2.4.5",
"nodemon": "^1.8.1",
"po2json": "^0.4.1",
"raw-loader": "^0.5.1",
"react-hot-loader": "^3.0.0-beta.6",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
}
}