-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "landboard-presale",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "^6.4.3",
"@elrondnetwork/dapp-core": "1.0.0",
"@elrondnetwork/dapp-utils": "0.1.3",
"@elrondnetwork/erdjs": "9.0.3",
"axios": "^0.26.0",
"dayjs": "^1.10.8",
"framer": "^2.0.0",
"framer-motion": "^6.2.8",
"parse-ms": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"react-lottie-player": "^1.4.1",
"react-router-dom": "6.2.1",
"react-scripts": "4.0.3",
"react-tsparticles": "^1.41.5",
"react-use": "^17.3.2",
"react-use-countdown": "^0.1.1",
"typescript": "4.1.2",
"web-vitals": "1.0.1"
},
"scripts": {
"start": "craco start",
"start-testnet": "npm run copy-testnet-config & npm run start",
"start-devnet": "npm run copy-devnet-config & npm run start",
"build": "craco build",
"build-testnet": "npm run copy-testnet-config & npm run build",
"build-devnet": "npm run copy-devnet-config & npm run build",
"copy-testnet-config": "cp ./src/config.testnet.tsx ./src/config.tsx",
"copy-devnet-config": "cp ./src/config.devnet.tsx ./src/config.tsx",
"test": "craco test",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "12.0.0",
"@types/react": "17.0.7",
"@types/react-dom": "17.0.0",
"autoprefixer": "9",
"postcss": "7",
"tailwindcss": "npm:@tailwindcss/postcss7-compat"
}
}