-
Notifications
You must be signed in to change notification settings - Fork 159
/
package.json
102 lines (102 loc) · 2.46 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
100
101
102
{
"name": "create-near-app",
"version": "8.0.0",
"description": "Quickly scaffold your dApp on NEAR Blockchain",
"main": "index.js",
"engines": {
"node": ">=16"
},
"files": [
"templates",
"dist/**/*.js"
],
"bin": {
"create-near-app": "index.js"
},
"scripts": {
"start": "npm run build && node index.js",
"build": "tsc",
"test": "npm run build && FORCE_COLOR=1 jest --runInBand",
"test-e2e": "npm run build && ./test/e2e.sh",
"lint": "eslint .",
"fix": "eslint . --fix",
"release": "npm run build && release-it",
"prepack": "npm run build"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"cross-spawn": "^7.0.3",
"ncp": "^2.0.0",
"prompts": "^2.4.2",
"semver": "^7.5.3"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.5",
"@babel/plugin-syntax-flow": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@release-it/conventional-changelog": "^5.1.1",
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^29.5.2",
"@types/ncp": "^2.0.5",
"@types/node": "^20.3.2",
"@types/prompts": "^2.4.4",
"@types/semver": "^7.5.0",
"eslint": "^8.43.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"node-dir": "^0.1.17",
"release-it": "^15.11.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"repository": "https://github.com/near/create-near-app.git",
"author": "Pagoda.co",
"bugs": "https://github.com/near/create-near-app/issues",
"license": "(MIT AND Apache-2.0)",
"keywords": [
"nearprotocol",
"near-protocol",
"assemblyscript",
"rust",
"react",
"smart-contract",
"blockchain"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
}
}