-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.18 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "Near-tournaments",
"version": "0.1.0",
"license": "UNLICENSED",
"scripts": {
"build": "npm run build:contract && npm run build:web",
"build:contract": "node contract/compile.js",
"build:contract:debug": "node contract/compile.js --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": "npm run build && npm run deploy:contract && npm run deploy:pages",
"prestart": "npm run build:contract:debug && npm run dev:deploy:contract",
"start": "echo The app is starting! It will automatically open in your browser when ready && env-cmd -f ./neardev/dev-account.env parcel src/index.html --open",
"dev": "nodemon --watch contract/src -e rs --exec \"npm run start\"",
"test": "npm run build:contract:debug && cd contract && cargo test -- --nocapture && cd .. && jest test --runInBand"
},
"devDependencies": {
"@babel/core": "~7.14.0",
"@babel/preset-env": "~7.14.0",
"@babel/preset-react": "~7.13.13",
"babel-jest": "~26.6.2",
"env-cmd": "~10.1.0",
"gh-pages": "~3.1.0",
"jest": "~26.6.2",
"jest-environment-node": "~26.6.2",
"near-cli": "~2.1.1",
"nodemon": "~2.0.3",
"parcel-bundler": "~1.12.4",
"react-test-renderer": "~17.0.1",
"sass": "^1.52.3",
"shelljs": "~0.8.4"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.14.0",
"@glidejs/glide": "3.4.1",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.3.2",
"@testing-library/user-event": "7.1.2",
"@types/googlemaps": "^3.43.3",
"@types/markerclustererplus": "^2.1.33",
"@types/react": "^16.14.26",
"assets": "^3.0.1",
"bootstrap": "^5.1.3",
"choices.js": "9.0.1",
"components": "^0.1.0",
"firebase": "^9.8.2",
"gulp": "4.0.2",
"gulp-append-prepend": "1.0.8",
"headroom.js": "0.11.0",
"moment": "2.27.0",
"near-api-js": "~0.43.1",
"node-sass": "4.14.1",
"nouislider": "14.6.0",
"prop-types": "15.7.2",
"react": "^16.14.0",
"react-bootstrap": "^2.4.0",
"react-brackets": "^0.4.6",
"react-datetime": "2.16.3",
"react-dom": "^16.14.0",
"react-github-button": "0.1.11",
"react-google-maps": "^9.4.5",
"react-router-dom": "^6.3.0",
"react-scripts": "3.4.1",
"reactstrap": "^8.5.1",
"regenerator-runtime": "~0.13.5",
"upload": "^1.1.1"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
},
"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>/contract/",
"<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"
]
}
}