-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 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
53
54
55
56
57
58
59
60
61
62
{
"name": "kevin_scan",
"version": "0.0.1",
"description": "This is a frontend application that I will include various features for interacting with multiple blockchains.",
"main": "index.js",
"license": "MIT",
"type": "module",
"dependencies": {
"@polkadot/api": "^6.1.1",
"@types/react-router-dom": "^5.3.0",
"antd": "^4.16.13",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"less": "^4.1.2",
"moralis": "^0.0.69",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-moralis": "^0.2.4",
"react-redux": "^7.2.5",
"react-router-dom": "^5.3.0",
"react-scripts": "^4.0.3",
"redux-thunk": "^2.3.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"devDependencies": {
"@lensesio/cypress-websocket-testing": "^1.0.1",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.18",
"cypress": "^8.4.1",
"typescript-plugin-css-modules": "^3.4.0"
},
"scripts": {
"build": "tsc && react-scripts build",
"run": "cargo run --manifest-path=./blockchain/Cargo.toml",
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-eject": "react-scripts eject",
"compileStyles": "lessc --js ./source/styles/customTheme.less ./src/styles/customTheme.css",
"test": "cypress open",
"serve": "node src/server.js",
"blockchain": "cargo clean --manifest-path=./blockchain/Cargo.toml && cargo run --manifest-path=./blockchain/Cargo.toml",
"start": "tsc && react-scripts start"
},
"homepage": "./",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}