-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
71 lines (71 loc) · 1.78 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
{
"name": "landing-page",
"version": "1.0.0",
"description": "Landing Page",
"keywords": [],
"author": "shuangmianxiaoQ",
"license": "MIT",
"scripts": {
"clean": "rm dist/bundle.js",
"start": "parcel src/index.html",
"build-prod": "parcel build src/index.html",
"commit": "git-cz",
"prettier:fix": "prettier --write src"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts?(x)": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@near-js/crypto": "^1.2.0",
"axios": "^0.23.0",
"bignumber.js": "^9.0.1",
"classnames": "^2.3.1",
"crypto-browserify": "3.12.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-spring": "^9.4.2",
"react-tooltip": "^4.2.17",
"use-animate-number": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@parcel/transformer-sass": "^2.0.0",
"@types/node": "^18.11.9",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.3.7",
"commitizen": "^4.2.4",
"events": "^3.1.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"parcel": "^2.0.0",
"postcss": "^8.3.9",
"postcss-px-to-viewport": "^1.1.1",
"postcss-pxtorem": "^6.0.0",
"prettier": "^2.4.1",
"process": "^0.11.10",
"pxtorem": "^1.0.0",
"stream-browserify": "^3.0.0",
"tailwindcss": "^2.2.17",
"typescript": "^4.4.4",
"vm-browserify": "^1.1.2"
}
}