-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.46 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
{
"name": "anton",
"version": "1.0.0",
"private": true,
"dependencies": {
"@material-ui/core": "latest",
"@material-ui/icons": "^4.4.3",
"@material-ui/styles": "^4.4.3",
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"bignumber.js": "^9.0.0",
"bitbox-sdk": "^8.8.0",
"body-parser": "^1.19.0",
"clsx": "latest",
"highlight.js": "^9.15.10",
"jsonwebtoken": "^8.5.1",
"kcors": "^2.2.2",
"koa": "^2.8.2",
"koa-bodyparser": "^4.2.1",
"koa-favicon": "^2.0.1",
"koa-jwt": "^3.6.0",
"koa-logger": "^3.2.1",
"koa-router": "^7.4.0",
"koa-unless": "^1.0.7",
"next": "latest",
"prop-types": "latest",
"react": "^16.9.0",
"react-cookie": "^4.0.1",
"react-dom": "^16.9.0",
"react-highlight": "^0.12.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"rimraf": "^3.0.0",
"slpjs": "^0.21.3",
"sqlite": "^3.0.3",
"sqlite3": "^4.1.0"
},
"scripts": {
"start": "npm run prod",
"server": "babel-node ./source/index.js",
"server:prod": "node ./dist/index.js",
"dev": "NODE_ENV=development npm run server",
"clean": "rimraf dist",
"build": "babel ./source --out-dir dist",
"prod": "NODE_ENV=production npm run clean build server:prod"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/preset-env": "^7.6.2"
}
}