-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (91 loc) · 2.74 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
{
"name": "decentralized-service-transaction-platform",
"version": "0.1.0",
"license": "(MIT AND Apache-2.0)",
"scripts": {
"build": "yarn build:contract && yarn build:web && cp vercel.json ./dist",
"build:contract": "asb",
"build:contract:debug": "asb --target debug",
"build:web": "parcel build src/index.html --public-url ./",
"dev": "yarn build:contract:debug && near dev-deploy && nodemon --watch assembly -e ts --exec yarn dev:start",
"lint": "eslint \"./**/*.js\" \"./**/*.jsx\"",
"start": "parcel src/index.html",
"run": "parcel src/index.html",
"dev:start": "env-cmd -f ./neardev/dev-account.env parcel src/index.html",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "yarn build:contract:debug && asp && jest",
"test:integration": "yarn build:contract:debug && npm run test:integration:ts && npm run test:integration:rs",
"test:integration:ts": "ava --verbose",
"test:integration:rs": "cd src/tests/integration-tests/rs && cargo run --example integration-tests"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@types/node": "^14.0.13",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"babel-plugin-import": "^1.13.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.33.0",
"ava": "^4.2.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",
"near-workspaces": "^2.0.0",
"nodemon": "^2.0.7",
"parcel-bundler": "^1.12.5",
"react-test-renderer": "^17.0.2",
"sass": "^1.51.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"dependencies": {
"antd": "^3.26.18",
"less": "^3.11.3",
"parcel-bundler": "^1.12.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "^3.9.5",
"big.js": "^6.1.1",
"env-cmd": "^10.1.0",
"near-api-js": "^0.44.2",
"next": "^12.1.6",
"prettier": "^2.6.2",
"prop-types": "^15.7.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/frontend/*.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"
]
}
}