-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.26 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": "crypto-chain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"start": "npm run build-client && node ./app",
"dev-server": "nodemon ./app",
"dev": "npm run dev-client & npm run dev-server",
"dev-client": "npm run clean && parcel client/src/index.html --out-dir client/dist",
"dev-test": "nodemon dev-test",
"build-client": "npm run clean && parcel build client/src/index.html --out-dir client/dist",
"clean": "rm -rf client/dist .cache"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "Iliyas Attarwala",
"license": "ISC",
"dependencies": {
"@babel/preset-react": "^7.7.4",
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.19.0",
"crypto-js": "^3.1.9-1",
"elliptic": "^6.5.1",
"express": "^4.17.1",
"history": "^4.10.1",
"parcel-bundler": "^1.12.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"uuid": "^3.3.3",
"ws": "^7.2.0"
},
"devDependencies": {
"jest": "^24.9.0"
}
}