forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.3 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@elektra-web/client",
"version": "2.0.0",
"description": "a web interface for elektra",
"keywords": [
"elektra",
"elektra-web",
"client"
],
"repository": "github:ElektraInitiative/libelektra",
"proxy": "http://localhost:33334",
"license": "SEE LICENSE IN ../../../LICENSE.md",
"dependencies": {
"@bosket/core": "^0.4.4",
"@bosket/tools": "^0.4.4",
"ajv": "^6.12.6",
"bosket-react": "^0.4.6",
"focus-trap-react": "^3.1.4",
"material-ui": "^0.20.2",
"react": "^16.14.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^16.14.0",
"react-redux": "^5.1.2",
"react-router-dom": "^4.3.1",
"react-scripts": "1.0.17",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-promises": "^1.0.0",
"redux-undo-redo-middleware": "^1.2.0"
},
"scripts": {
"postinstall": "npm install --prefix ../webd",
"start": "npm run build && cd ../webd && npm run build && npm run start:prod",
"start:prod": "npm run server",
"server": "cd ../webd && npm run start:prod",
"start:dev": "concurrently \"react-scripts start\" \"npm run server:dev\"",
"server:dev": "cd ../webd && npm run start:dev",
"build": "react-scripts build"
},
"devDependencies": {
"concurrently": "^3.5.1",
"webpack": "^3.11.0"
}
}