-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.56 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "echo-app",
"version": "0.1.0",
"license": "UNLICENSED",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "next build",
"build:contract": "asb",
"build:contract:debug": "asb --target debug",
"build:web": "parcel build src/index.html --public-url ./",
"dev:deploy:contract": "near dev-deploy",
"deploy:contract": "near deploy",
"deploy:pages": "gh-pages -d dist/",
"deploy": "next build && npm run deploy:contract && npm run deploy:pages",
"prestart": "next build:contract:debug && next:deploy:contract",
"start": "next start",
"dev": "next",
"dev-contract": "yarn build:contract:debug && near dev-deploy && nodemon --watch assembly -e ts --exec yarn dev:start",
"export": "next export"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-jest": "^26.0.0",
"env-cmd": "^10.1.0",
"gh-pages": "^3.0.0",
"jest": "^26.0.1",
"jest-environment-node": "^26.0.0",
"near-cli": "^1.0.1",
"near-sdk-as": "^1.0.1",
"nodemon": "^2.0.3",
"parcel-bundler": "^1.12.4",
"react-test-renderer": "^16.13.1"
},
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-do-expressions": "^7.10.4",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@fortawesome/fontawesome-free": "^5.14.0",
"@nebulous/skynet": "^2.0.1",
"@zeit/next-css": "^1.0.1",
"big.js": "^5.2.2",
"mdbreact": "./mdbreact-4.27.0.tgz",
"near-api-js": "^0.29.0",
"next": "^9.5.3",
"next-compose-plugins": "^2.2.0",
"next-fonts": "^1.4.0",
"next-images": "^1.4.1",
"next-session": "^3.2.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"regenerator-runtime": "^0.13.5",
"skynet-js": "^2.0.6"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/src/__mocks__/fileMock.js"
},
"setupFiles": [
"<rootDir>/src/jest.init.js"
],
"testEnvironment": "near-cli/test_environment",
"testPathIgnorePatterns": [
"<rootDir>/assembly/",
"<rootDir>/node_modules/"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}