-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
111 lines (111 loc) · 3.98 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "xbrowsersync-api",
"description": "The REST API service component of the xBrowserSync application.",
"version": "1.1.13",
"author": "xBrowserSync",
"license": "GPL-3.0-only",
"main": "dist/api.js",
"repository": {
"type": "git",
"url": "https://github.com/xbrowsersync/api.git"
},
"bugs": {
"url": "https://github.com/xbrowsersync/api/issues"
},
"scripts": {
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "echo Running unit/integration tests... & jest --clearCache && jest --config jestconfig.unit.json --runInBand",
"test:e2e": "echo Running e2e tests... & jest --clearCache && jest --config jestconfig.e2e.json --runInBand",
"coverage": "mkdirp coverage && npm run test:unit -- --coverage && coveralls < coverage/lcov.info",
"lint": "echo Running lint... & eslint src && stylelint src/**/*.scss",
"clean": "rimraf ./dist",
"build:docs:dev": "echo Building docs (dev mode)... & webpack --config webpack.config.js --mode development",
"build:docs": "echo Building docs... & webpack --config webpack.config.js --mode production",
"build:api:dev": "echo Building api (dev mode)... & npm run clean && tsc --sourceMap && npm run build:docs:dev",
"build:api": "echo Building api... & npm run clean && tsc && npm run build:docs",
"build": "npm run lint && npm run build:api",
"postbuild": "echo Done!",
"watch:api": "tsc-watch --onSuccess \"node ./dist/api.js\"",
"watch:docs": "webpack serve --config webpack.config.js --mode development",
"watch": "npm run build:api:dev && concurrently --kill-others \"npm run watch:api\" \"npm run watch:docs\""
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"bootstrap": "^4.6.0",
"bunyan": "^1.8.15",
"core-decorators": "^0.20.0",
"cors": "^2.8.5",
"country-list": "^2.2.0",
"deepmerge": "^4.2.2",
"dompurify": "^2.2.7",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"express-routes-versioning": "^1.0.1",
"helmet": "^4.4.1",
"marked": "^2.0.1",
"mkdirp": "^1.0.4",
"moment": "^2.29.1",
"mongodb": "^3.6.5",
"mongoose": "^5.12.3",
"nocache": "^2.1.0",
"smooth-scroll": "^16.1.3",
"typeface-roboto-condensed": "^1.1.13",
"uuid": "^8.3.2",
"uuid-parse": "^1.1.0"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-rate-limit": "^5.1.1",
"@types/helmet": "^4.0.0",
"@types/jest": "^26.0.22",
"@types/marked": "^2.0.1",
"@types/mongodb": "^3.6.11",
"@types/mongoose": "^5.10.4",
"@types/node": "^14.14.37",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.0",
"@types/uuid-parse": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"concurrently": "^6.0.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.1",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.4.0",
"node-sass": "^5.0.0",
"postcss-loader": "^5.2.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sass-loader": "^11.0.1",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-prettier": "^1.2.0",
"supertest": "^6.1.3",
"ts-jest": "^26.5.4",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.9",
"typescript": "^4.2.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}