forked from YumpSF/Recommended-Reviews-Module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.69 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.69 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
{
"name": "Yump_Reviews_Module",
"version": "1.0.0",
"description": "User_reviews_component",
"author": "Danny Ngo",
"license": "",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"start": "nodemon server/index.js",
"build": "webpack --mode production -w",
"datagenerate": "node database/seed.js",
"database": "mysql -u root < database/schema.sql",
"seed": "database/seed.sh",
"test": "jest --coverage --"
},
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"babel-loader": "^8.0.4",
"express": "^4.16.4",
"faker": "^4.1.0",
"jest-mock": "^23.2.0",
"jquery": "^3.3.1",
"moment": "^2.22.2",
"mysql": "^2.16.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"styled-components": "^4.0.2",
"webpack-dev-server": "^3.1.10"
},
"devDependencies": {
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-styled-components": "^1.8.0",
"css-loader": "^1.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"style-loader": "^0.23.1",
"webpack": "^4.23.0",
"webpack-cli": "^3.1.2"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>test/setupTests.js"
}
}