-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.71 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
{
"name": "product-information-service",
"description": "> Project description",
"author": "",
"license": "ISC",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"react-production": "webpack -d --mode=production",
"react-dev": "webpack -d --watch --display-error-details",
"server-production": "node -r dotenv/config server/index.js",
"server-dev": "node server/index.js",
"seed-production": "node -r dotenv/config seedScript.js",
"seed-dev": "node seedScript.js",
"test": "nyc --reporter=html --reporter=text mocha --require esm _test_/seed.spec/seed.spec.js --exit; nyc --reporter=html --reporter=text mocha _test_/server.spec/server.spec.js --exit",
"test:seed": "nyc --reporter=html --reporter=text mocha --require esm _test_/seed.spec/seed.spec.js --exit",
"test:server": "nyc --reporter=html --reporter=text mocha _test_/server.spec/server.spec.js --exit",
"test:client": "nyc --reporter=html --reporter=text mocha --require esm _test_/client.spec/client.spec.js --exit",
"coverage": "nyc report --reporter=text-lcov"
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"babel-loader": "^8.1.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-static-gzip": "^2.1.0",
"fetch": "^1.1.0",
"jsdom": "^16.4.0",
"lodash": "^4.17.20",
"mongoose": "^5.10.7",
"prop-types": "^15.7.2",
"sinon": "^9.2.1",
"styled-components": "^5.2.1",
"underscore": "^1.11.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.10.4",
"babel-jest": "^26.3.0",
"brotli-gzip-webpack-plugin": "^0.5.0",
"chai": "^4.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor.git",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"supertest": "^5.0.0"
},
"version": "1.0.0",
"main": ".eslintrc.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Team-Structure/Product-Information-Service.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/Team-Structure/Product-Information-Service/issues"
},
"homepage": "https://github.com/Team-Structure/Product-Information-Service#readme"
}