mirror of
https://github.com/cs01/gdbgui
synced 2024-11-17 07:48:57 +01:00
37 lines
942 B
JSON
37 lines
942 B
JSON
{
|
|
"name": "gdbgui",
|
|
"version": "0.1.0",
|
|
"license": "GPL-3.0",
|
|
"scripts": {
|
|
"build": "webpack --mode production --config webpack.config.js",
|
|
"watch": "webpack --mode development --watch --config webpack.config.js",
|
|
"test": "jest",
|
|
"prettier": "prettier ./gdbgui/src/js/** --write"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"es2015",
|
|
"react",
|
|
"stage-0"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"babel-core": "^6.26.0",
|
|
"babel-eslint": "^8.2.3",
|
|
"babel-loader": "^7.1.4",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"babel-preset-react": "^6.24.1",
|
|
"babel-preset-stage-0": "^6.24.1",
|
|
"eslint": "^4.19.1",
|
|
"eslint-loader": "^2.0.0",
|
|
"eslint-plugin-prettier": "^2.6.0",
|
|
"eslint-plugin-react": "^7.7.0",
|
|
"jest": "^21.2.1",
|
|
"prettier": "^1.12.0",
|
|
"react": "^16.3.1",
|
|
"react-dom": "^16.3.1",
|
|
"statorgfc": "^0.1.6",
|
|
"webpack": "^4.5.0",
|
|
"webpack-cli": "^2.0.14"
|
|
}
|
|
}
|