-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.07 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
{
"name": "book-a-meal",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Book-A-Meal is an application that allows customers to make food orders and helps the food",
"main": "index.js",
"scripts": {
"refresh:test": "yarn workspace server refresh:test",
"e2e:setup": "selenium-standalone install --config=./selenium.config.js",
"e2e:server": "cross-env NODE_ENV=test nodemon --watch server -r dotenv/config -r esm server/src/app.js",
"e2e:test": "cross-env NODE_ENV=test nightwatch",
"e2e:start": "npm-run-all refresh:test e2e:test"
},
"dependencies": {
"@yarnpkg/pnpify": "^2.0.0-rc.20",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"html-webpack-externals-plugin": "^3.8.0",
"html-webpack-harddisk-plugin": "^1.0.1",
"html-webpack-plugin": "^4.0.4",
"nyc": "^15.0.1",
"webpack": "^4.42.1",
"webpack-merge": "^4.2.2"
},
"devDependencies": {
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-node": "^0.3.3",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.4",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ozimos/Book-A-Meal.git"
},
"author": "Tovieye Moses Ozi",
"license": "ISC",
"bugs": {
"url": "https://github.com/ozimos/Book-A-Meal/issues"
},
"homepage": "https://github.com/ozimos/Book-A-Meal#readme"
}