-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.41 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
{
"name": "foodigo",
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/pictures",
"<rootDir>/reviews",
"<rootDir>/sidebar"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"verbose": true,
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.js$": "babel-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|css)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"version": "1.0.0",
"description": "ttle and map components for foodiGo",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "webpack -d --watch",
"start": "node server/index.js",
"seed": "knex seed:run",
"migrate": "knex migrate:latest",
"seedDB": "knex migrate:latest && knex seed:run",
"rollback": "knex migrate:rollback",
"prod": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelDurfey/FoodiGo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MichaelDurfey/FoodiGo/issues"
},
"homepage": "https://github.com/MichaelDurfey/FoodiGo#readme",
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"bootstrap": "^4.0.0",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"faker": "^4.1.0",
"jquery": "^3.3.1",
"knex": "^0.14.4",
"pg": "^7.4.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-icons": "^2.2.7",
"reactstrap": "^5.0.0-beta",
"save": "^2.3.2",
"uniqid": "^4.1.1",
"webpack": "^3.11.0",
"yelp-fusion": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.10",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.12.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.10",
"jest": "^22.4.0",
"jest-cli": "^22.4.2",
"morgan": "^1.9.0",
"nodemon": "^1.15.1",
"react-test-renderer": "^16.2.0",
"style-loader": "^0.20.2",
"supertest": "^3.0.0"
}
}