forked from cs01/gdbgui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 909 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 909 Bytes
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
{
"name": "gdbgui",
"version": "0.1.0",
"license": "GPL-3.0",
"scripts": {
"start": "BABEL_ENV=development webpack --mode development --watch --config webpack.config.js",
"test": "jest",
"build": "BABEL_ENV=production webpack --mode production --config webpack.config.js",
"prettier": "prettier ./gdbgui/src/js/** --write"
},
"babel": {
"presets": [
"react-app"
]
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-react-app": "^3.1.1",
"babel-runtime": "6.26.0",
"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.4",
"react-dom": "^16.4",
"statorgfc": "^0.1.6",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
}
}