-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.54 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.54 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
99
100
101
{
"name": "back-dev-env",
"version": "1.0.0",
"author": "Andrei Solovev (wdesign.es)",
"license": "MIT",
"engines": {
"node": ">=8",
"npm": ">=3.10"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
},
"shippedProposals": true
}
]
],
"plugins": [
"source-map-support"
],
"ignore": [
"node_modules",
"dist"
]
},
"dependencies": {
"@babel/polyfill": "7.8.3",
"body-parser": "^1.19.0",
"celebrate": "^11.0.1",
"compression": "^1.7.4",
"connect-timeout": "^1.9.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"minimist": "^1.2.0",
"nodemon": "^2.0.2",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/core": "7.8.3",
"@babel/node": "7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "7.8.3",
"@babel/preset-stage-2": "7.8.3",
"assets-webpack-plugin": "^3.9.10",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-loader": "8.0.6",
"babel-plugin-source-map-support": "^2.1.1",
"cross-env": "^6.0.3",
"dotenv-safe": "^8.2.0",
"enzyme": "^3.11.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-node": "^0.3.3",
"eslint-loader": "^3.0.3",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.0",
"file-loader": "^5.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"lint-staged": "^10.0.2",
"null-loader": "^3.0.0",
"prettier": "^1.19.1",
"raw-loader": "^4.0.0",
"source-map-support": "^0.5.16",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-node-externals": "^1.7.2"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint",
"git add --force"
]
},
"scripts": {
"precommit": "lint-staged",
"lint-js": "eslint ./src",
"fix-js": "eslint --fix ./src",
"lint": "yarn run lint-js",
"test": "jest",
"test-watch": "yarn run test --watch --notify",
"test-cover": "yarn run test --coverage",
"coverage": "yarn run test-cover && opn coverage/lcov-report/index.html",
"clean": "rm -rf dist/*",
"build": "yarn run clean && npx cross-env NODE_ENV=production SERVER_PORT=3100 npx babel-node internals/run build",
"start": "npx cross-env NODE_ENV=development babel-node internals/run start",
"run-dist": "npx nodemon --watch dist dist/index.js"
}
}