-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.7 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
45
46
47
48
49
50
51
52
{
"name": "ledger-node",
"description": "A new expanded and private finance experience running on the blockchain.",
"version": "0.11.11",
"dependencies": {
"archiver": "5.1.0",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"node-fetch": "2.6.0",
"on-finished": "2.3.0",
"pretty-error": "2.1.2",
"vanilla-blockchain": "0.2.8",
"vanilla-storage": "0.3.11"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/node": "7.12.10",
"@babel/plugin-proposal-throw-expressions": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/preset-env": "7.12.11",
"@soyjavi/eslint": "^0.1",
"@typescript-eslint/eslint-plugin": "3.5.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "7.3.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.3",
"eslint-plugin-react-hooks": "4.0.5",
"jest": "26.6.3",
"nodemon": "2.0.6",
"prettier": "2.2.1",
"typescript": "^4.0.0"
},
"main": "src/index.js",
"_engines": {
"node": "10.x"
},
"scripts": {
"lint": "eslint --cache --fix --format codeframe --ext .jsx,.js,.tsx,.ts src",
"test": "yarn build && jest src --runInBand --collectCoverage",
"build": "babel -d ./dist ./src -s",
"start": "NODE_ENV=production babel-node ./src/index.js",
"start:babel": "npm run build && NODE_ENV=production node ./dist/index.js",
"start:dev": "nodemon --exec NODE_ENV=development babel-node src/index.js --trace-warnings"
}
}