forked from cs01/gdbgui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 908 Bytes
/
package.json
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
{
"name": "gdbgui",
"version": "0.1.0",
"license": "GPL-3.0",
"scripts": {
"start": "NODE_ENV=development webpack --mode development --watch --config webpack.config.js",
"test": "jest",
"build": "NODE_ENV=production webpack --mode production --config webpack.config.js",
"prettier": "prettier ./gdbgui/src/js/** --write"
},
"dependencies": {
"prettier": "^1.12.0",
"react": "^16.8",
"react-dom": "^16.4",
"statorgfc": "^0.1.6",
"webpack": "4.19.0",
"webpack-cli": "^2.0.14"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/react": "^16.8.7",
"@types/react-dom": "^16.8.2",
"fork-ts-checker-webpack-plugin": "^1.0.0",
"jest": "^24.3.1",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.3",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.3.3333"
}
}