-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.74 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
{
"name": "shipping",
"jest": {
"testURL": "http://myetsytest.com/5",
"verbose": true,
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"version": "1.0.0",
"description": "Shipping module for Etsy FEC project",
"main": "server.js",
"scripts": {
"seed": "node ./seed/shipping-seeder.js",
"dev-client": "webpack --config webpack.config.js --watch",
"dev-server": "nodemon server.js",
"start": "pm2 start server.js",
"build": "webpack --config webpack.config.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FEC-Linka/shipping.git"
},
"author": "Tammy Treit",
"license": "ISC",
"bugs": {
"url": "https://github.com/FEC-Linka/shipping/issues"
},
"homepage": "https://github.com/FEC-Linka/shipping#readme",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"moment": "^2.27.0",
"mongoose": "^5.9.28",
"pm2": "^4.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"jest": "^26.4.0",
"jest-enzyme": "^7.1.2",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}