-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.2 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
{
"name": "guest-book",
"version": "0.1.0",
"license": "(MIT AND Apache-2.0)",
"scripts": {
"build": "yarn build:contract && yarn build:web",
"build:contract": "asb",
"build:contract:debug": "asb --target debug",
"build:web": "parcel build src/index.html --public-url ./",
"deploy": "yarn build && near deploy",
"dev": "yarn build:contract:debug && near dev-deploy && nodemon --watch assembly -e ts --exec yarn dev:start",
"lint": "eslint \"./**/*.js\" \"./**/*.jsx\"",
"start": "yarn deploy && parcel src/index.html",
"dev:start": "env-cmd -f ./neardev/dev-account.env parcel src/index.html",
"test": "yarn build:contract:debug && asp && jest"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.13.13",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^27.4.2",
"eslint": "^7.32.0",
"gh-pages": "^3.2.3",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"near-cli": "^3.0.0",
"near-sdk-as": "3.2.3",
"nodemon": "^2.0.7",
"parcel-bundler": "^1.12.5",
"react-test-renderer": "^17.0.2",
"sass": "^1.44.0",
"typescript": "^4.5.2"
},
"dependencies": {
"big.js": "^6.1.1",
"env-cmd": "^10.1.0",
"near-api-js": "^0.44.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.9"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
},
"jest": {
"projects": [
{
"displayName": "User interface tests",
"testEnvironment": "jsdom",
"testMatch": [
"<rootDir>/src/tests/ui/*.js"
]
},
{
"displayName": "Integration tests",
"testEnvironment": "near-cli/test_environment",
"testMatch": [
"<rootDir>/src/tests/integration/*.js"
]
}
],
"testPathIgnorePatterns": [
"assembly/*"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}