-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.42 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.42 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
{
"name": "sendit",
"version": "1.0.0",
"description": "a web application to deliver parcels",
"main": "server.js",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"test:coverage": "jest --coverage --colors",
"dev": "webpack-dev-server --hot --inline",
"build": "webpack --config webpack.prod.config.js --mode production",
"start": "npm run build && NODE_ENV=production node server.js"
},
"author": "olympians",
"license": "ISC",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"absoluteRuntime": false,
"corejs": false,
"helpers": true,
"regenerator": true,
"useESModules": false
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
]
]
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.6.0",
"babel-loader": "^8.0.5",
"babel-plugin-transform-async-to-module-method": "^6.24.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"enzyme-to-json": "^3.3.5",
"fetch-mock": "^7.3.1",
"jest": "^24.6.0",
"jest-cli": "^24.6.0",
"jest-localstorage-mock": "^2.4.0",
"react-hot-loader": "^4.8.0",
"redux-mock-store": "^1.5.3",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/runtime": "^7.4.3",
"babel-polyfill": "^6.26.0",
"cross-fetch": "^3.0.2",
"express": "^4.16.4",
"node-fetch": "^2.3.0",
"react": "^16.8.5",
"react-bootstrap": "^1.0.0-beta.6",
"react-dom": "^16.8.5",
"react-redux": "^6.0.1",
"react-router-dom": "^5.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"webpack": "^4.29.6"
},
"repository": {
"type": "git",
"url": "https://github.com/mnswaleh/bootfront.git"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFilesAfterEnv": [
"<rootDir>src/setupTests.js",
"jest-localstorage-mock"
],
"collectCoverage": true
},
"setupTestFrameworkScriptFile": "PATH_TO_YOUR_FILE"
}