-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.71 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.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
{
"name": "my-interpreter",
"version": "0.0.1",
"description": "Helps me interpret Magento query log with stack traces and sometimes visualize how my application works",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"acceptance": "./node_modules/.bin/codeceptjs run --steps",
"dev-server": "node_modules/.bin/webpack-dev-server"
},
"jest": {
"testPathIgnorePatterns": [
"/test/acceptance/"
],
"moduleNameMapper": {
"@@(.*)$": "<rootDir>/src/$1"
}
},
"keywords": [
"magento2",
"php stacktrace"
],
"repository": "https://github.com/Jakhotiya/stack-trace-reader",
"author": "Abhishek Jakhotiya",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"mysql": "^2.16.0",
"npm": "^6.5.0",
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.0",
"codeceptjs": "^2.0.3",
"css-loader": "^2.1.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"puppeteer": "^1.11.0",
"style-loader": "^0.23.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"browserslist": [
"last 3 chrome version",
"last 3 firefox version"
]
}