-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.53 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
{
"name": "wavecttoken",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build -o ./dist/build",
"start": "next start",
"export": "mv ./dist/.git/ ./tmp_build/.git/ && mv ./dist/CNAME ./tmp_build/CNAME && next build && next export -o ./dist && mv ./dist/404/index.html ./dist/index.html && mv ./tmp_build/.git/ ./dist/ && echo 0 > ./dist/.nojekyll && mv ./tmp_build/CNAME ./dist/CNAME",
"serve": "serve build",
"test": "truffle migrate --reset && truffle test"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.13",
"@openzeppelin/contracts": "^3.3.0",
"eventemitter3": "^4.0.7",
"next": "10.0.3",
"openzeppelin-solidity": "3.3.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-ga": "^3.3.0",
"react-messenger-customer-chat": "^0.8.0",
"react-notifications-component": "^3.0.3",
"react-particles-js": "^3.4.1",
"react-player": "^2.7.0",
"tailwindcss": "^2.0.1",
"truffle": "^5.1.56",
"web3": "1.2.11"
},
"devDependencies": {
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"autoprefixer": "^10.0.4",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"postcss": "^8.2.1",
"postcss-import": "^13.0.0",
"serve": "^11.3.2",
"typescript": "^4.1.2"
}
}