-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
81 lines (81 loc) · 2.25 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": "@liqnft/candy-shop",
"version": "0.3.3",
"description": "Decentralized and escrowless marketplace in minutes",
"main": "dist/index.es.js",
"module": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"author": "LIQNFT",
"license": "MIT",
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-typescript": "^8.1.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.6.3",
"less": "^4.1.2",
"postcss": "^8.4.8",
"postcss-modules": "^4.3.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"rollup": "^2.38.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-svg-import": "^1.6.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.4",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@project-serum/anchor": "^0.23.0",
"@solana/spl-token": "^0.2.0",
"@solana/wallet-adapter-react": "^0.15.0",
"@solana/wallet-adapter-wallets": "^0.11.0",
"@solana/web3.js": "^1.36.0",
"antd": "^4.19.1",
"axios": "^0.26.1",
"solana-candy-shop-schema": "git+https://github.com/LIQNFT/solana-candy-shop-schema.git#66e28c46176177b4be90cc96a4bdfa017e16dc30"
},
"scripts": {
"start": "rollup -c --watch ",
"build": "rollup -c",
"lint": "eslint --fix 'src/**/*.ts'",
"test": "jest",
"prepare": "rollup -c"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/test/**/*.test.ts"
]
}
}