forked from fec4-gandolf/PeopleAlsoViewed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "peoplealsoviewed",
"version": "1.0.0",
"description": "People who viewed this item also viewed",
"scripts": {
"init:db": "mysql -u root -p < alsoviewedschema.sql",
"seed:db": "node seedAlsoViewed.js",
"start": "node server/app.js",
"start:dev": "nodemon server/app.js",
"react:dev": "webpack -d --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fec4-gandolf/PeopleAlsoViewed.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fec4-gandolf/PeopleAlsoViewed/issues"
},
"homepage": "https://github.com/fec4-gandolf/PeopleAlsoViewed#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"jquery": "^3.4.1",
"mysql": "^2.17.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
}
}