This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 2.34 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
{
"name": "frost-web",
"version": "0.4.0",
"description": "Frost Web Server",
"private": true,
"main": "./src/index.js",
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"start": "node ./",
"build:copy": "cpx \"./src/client/images/**\" ./src/client.built/images",
"build:bundle": "webpack",
"build": "npm run build:copy && npm run build:bundle",
"clean": "rimraf \"./src/*.built\"",
"rebuild": "npm run clean && npm run build",
"test:lint": "eslint \"./src/**/*.js\"",
"test:mocha": "mocha -A --use_strict",
"test": "npm run test:lint && npm run test:mocha",
"generate-configs": "cp ./.configs/client-config.default.json ./.configs/client-config.json && cp ./.configs/server-config.default.json ./.configs/server-config.json"
},
"author": "team FrostDevelop",
"license": "MIT",
"dependencies": {
"ajv": "5.0.x",
"babel-core": "6.26.x",
"babel-loader": "7.1.x",
"babel-plugin-transform-runtime": "6.23.x",
"babel-preset-es2015": "6.24.x",
"babel-preset-es2015-riot": "1.1.x",
"babel-preset-es2017": "6.24.x",
"body-parser": "1.18.x",
"compression": "1.7.x",
"connect-flash": "0.1.x",
"connect-redis": "3.3.x",
"cookie": "0.3.x",
"cookie-parser": "1.4.x",
"cpx": "1.5.x",
"css-loader": "0.28.x",
"csurf": "1.9.x",
"eslint": "4.x",
"eslint-config-standard": "11.x",
"eslint-plugin-import": "2.10.x",
"eslint-plugin-node": "6.x",
"eslint-plugin-promise": "3.6.x",
"eslint-plugin-standard": "3.x",
"express": "4.15.x",
"express-session": "1.15.x",
"helmet": "3.8.x",
"mocha": "3.x",
"moment": "^2.22.2",
"mongodb": "^2.x",
"node-sass": "4.13.x",
"oauth2orize": "^1.11.0",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2",
"path-to-regexp": "2.2.x",
"pug": "3.0.x",
"qs": "^6.5.2",
"reconnecting-websocket": "3.2.x",
"request": "2.81.x",
"request-promise": "4.2.x",
"rimraf": "2.6.x",
"riot": "3.5.x",
"riot-route": "3.1.x",
"riot-tag-loader": "1.0.x",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"uid2": "0.0.3",
"webpack": "3.x",
"websocket": "1.0.x",
"websocket-events": "1.0.x"
},
"files": [
"*"
]
}