-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.2 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.2 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
{
"name": "modules",
"version": "1.0.2",
"description": "",
"main": "./app/index.js",
"scripts": {
"start:prod": "node_modules/.bin/pm2 start process.yml",
"server:start": "nodemon ./api/index.js --exec babel-node --presets es2015",
"server:migrate:install": "nodemon ./api/migrate/install.js --exec babel-node --presets es2015 --migrate install",
"server:migrate:update": "nodemon ./api/migrate/install.js --exec babel-node --presets es2015 --migrate update",
"client:watch": "NODE_ENV='development' webpack --watch --mode development",
"client:build": "NODE_ENV='production' webpack --mode production --env.patch",
"test": "mocha --require babel-register ./modules -name '*.test.js' --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiselyou/modules.git"
},
"keywords": [
"listener"
],
"author": "v.a.kiseliou",
"license": "ISC",
"bugs": {
"url": "https://github.com/kiselyou/modules/issues"
},
"homepage": "https://github.com/kiselyou/modules#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"colors": "^1.1.2",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.1.0",
"less": "^3.0.1",
"less-loader": "^4.1.0",
"mocha": "^5.0.5",
"mocha-loader": "^1.1.3",
"nodemon": "^1.17.3",
"postcss": "^6.0.21",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.3",
"prompt": "^1.0.0",
"socket.io": "^2.1.0",
"socket.io-client": "^2.1.0",
"style-loader": "^0.20.3",
"webpack": "^4.4.1",
"webpack-auto-inject-version": "^1.1.0",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"body-parser": "^1.18.2",
"classnames": "^2.2.5",
"connect-redis": "^3.3.3",
"cookie-parser": "^1.4.3",
"copy-webpack-plugin": "^4.5.1",
"dat.gui": "^0.7.2",
"express": "^4.16.3",
"express-session": "^1.15.6",
"file-loader": "^1.1.11",
"generate-password": "^1.4.0",
"js-yaml": "^3.11.0",
"jsen": "^0.6.6",
"mongodb": "^3.0.7",
"multer": "^1.3.0",
"nodemailer": "^4.6.5",
"object-path": "^0.11.4",
"password-hash": "^1.2.2",
"path": "^0.12.7",
"pm2": "^2.10.4",
"prop-types": "^15.6.1",
"qs": "^6.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-fontawesome": "^1.6.1",
"react-loader-spinner": "^2.1.0",
"react-redux": "^5.0.7",
"redis": "^2.8.0",
"redux": "^4.0.0",
"socket.io-redis": "^5.2.0",
"stats-js": "^1.0.0-alpha1",
"three": "^0.91.0",
"three-orbitcontrols": "^2.0.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"uuid": "^3.2.1"
}
}