-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
100 lines (100 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
92
93
94
95
96
97
98
99
100
{
"name": "npm-register",
"version": "2.8.2",
"description": "Your own private npm registry and backup server",
"keywords": [
"npm"
],
"homepage": "https://github.com/jdxcode/npm-register",
"bugs": "https://github.com/jdxcode/npm-register",
"repository": "jdxcode/npm-register",
"license": "ISC",
"author": "Jeff Dickey (@jdxcode)",
"files": [
"bin",
"lib"
],
"main": "lib/start.js",
"bin": "bin/npm-register",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config ./config/webpack.config",
"build:dev": "cross-env NODE_ENV=development webpack --config ./config/webpack.config",
"dev": "cross-env NODE_ENV=development concurrently --kill-others -p \"[{name}]\" -n \"API,UI\" -c \"white.bgMagenta.bold,white.bgGreen.bold\" \"npm run server:dev\" \"webpack-dev-server --watch-poll --colors --config ./config/webpack.config\"",
"lint": "standard --verbose | snazzy",
"precommit": "echo 'Running Linters...' && npm run lint",
"server": "node bin/npm-register start",
"server:dev": "nodemon --watch lib bin/npm-register start",
"start": "cross-env NODE_ENV=production concurrently --kill-others-on-fail -p \"[{name}]\" -n \"UI,API\" -c \"white.bgMagenta.bold,white.bgGreen.bold\" \"npm run build\" \"npm run server\"",
"test": "nyc mocha && standard",
"test:mocha": "nyc mocha"
},
"dependencies": {
"@google-cloud/storage": "^2.3.1",
"@material-ui/core": "^3.2.2",
"@material-ui/icons": "^3.0.1",
"aws-sdk": "2.304.0",
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"concurrently": "^3.6.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"debug": "^3.2.6",
"dotenv": "^4.0.0",
"express": "^4.16.4",
"fs-extra": "^5.0.0",
"htpasswd-auth": "^2.0.1",
"http-call": "^5.2.2",
"ioredis": "^3.2.2",
"klaw": "^2.1.1",
"lodash": "^4.17.11",
"marked": "^0.5.1",
"metric-log": "^1.0.1",
"node-pre-gyp": "^0.10.3",
"on-finished": "^2.3.0",
"opbeat": "^4.17.0",
"path-join-safe": "1.0.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"s3": "^4.4.0",
"sinon": "^4.5.0",
"standard-loader": "^6.0.1",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.1.0",
"url-loader": "^1.1.2",
"uuid": "^3.3.2",
"webpack": "4.17.1",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.4",
"yargs": "^12.0.2"
},
"devDependencies": {
"chai": "^4.2.0",
"husky": "^1.1.2",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"nyc": "^11.9.0",
"snazzy": "^7.1.1",
"standard": "^11.0.1",
"supertest": "^3.3.0",
"tmp": "^0.0.33",
"unexpected": "^10.39.1",
"webpack-dev-server": "3.1.7"
},
"nyc": {
"exclude": [
"**/_*.js"
]
},
"engines": {
"node": "^8.4.0"
},
"standard": {
"env": "mocha"
}
}