-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
132 lines (132 loc) · 4.29 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "mindbox-quick-start",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --maxWorkers=1",
"test:dev": "jest --maxWorkers=1 --watch --coverage",
"start": "node ./build/server/index.js",
"start:back": "nodemon",
"start:front": "webpack serve --config ./config/webpack.dev.js --hot --open",
"build:front": "rm -rf ./build/client && webpack --config ./config/webpack.prod.js",
"build:back": "rm -rf ./build/server && tsc --project ./config/tsconfig.build.json",
"build": "npm run build:front && npm run build:back",
"webpack": "webpack --mode=production",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts --fix .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"wipe": "rm -rf ./node_modules && rm -f package-lock.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xNa1D/mindbox-quick-start.git"
},
"keywords": [
"express",
"nodejs",
"mindbox"
],
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/src/__mocks__/styleMock.js",
"^src/(.*)": "<rootDir>/src/$1",
"^client/(.*)": "<rootDir>/src/client/$1",
"^server/(.*)": "<rootDir>/src/server/$1"
}
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/xNa1D/mindbox-quick-start/issues"
},
"homepage": "https://github.com/xNa1D/mindbox-quick-start#readme",
"dependencies": {
"assert": "^2.0.0",
"axios": "^0.21.1",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"form-data": "^4.0.0",
"generate-password": "^1.5.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.6",
"papaparse": "^5.3.1",
"path-browserify": "^1.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-markdown": "^7.0.1",
"react-remark": "^2.0.3",
"react-router-dom": "^5.2.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"sequelize": "^6.7.0",
"sqlite3": "^5.0.2",
"universal-cookie": "^4.0.4",
"url": "^0.11.0",
"util": "^0.12.3",
"v8-compile-cache": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/dom": "^7.28.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.9",
"@types/form-data": "^2.5.0",
"@types/jest": "^26.0.20",
"@types/jsdom": "^16.2.5",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.7",
"@types/papaparse": "^5.2.6",
"@types/react": "^16.14.21",
"@types/react-dom": "^16.9.14",
"@types/react-router-dom": "^5.1.7",
"@types/supertest": "^2.0.10",
"@types/webpack": "4.1.4",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.0.0",
"css-loader": "^5.1.0",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-sonarjs": "^0.11.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jsdom": "^16.4.0",
"mini-css-extract-plugin": "^2.4.5",
"prettier": "^2.5.1",
"process": "0.11.10",
"style-loader": "^2.0.0",
"supertest": "^6.0.1",
"ts-jest": "^26.5.3",
"ts-loader": "^8.3.0",
"ts-node": "^9.0.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.5.2",
"url-loader": "^4.1.1",
"webpack": "^5.64.4",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0"
}
}