-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.61 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
{
"name": "neon-hello-world-starter",
"version": "0.1.0",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index",
"install": "npm run build",
"build": "neon build --release && tsc",
"clean": "sh scripts/clean.sh",
"test": "cargo test native --release && jest",
"format": "cargo fmt -- --check && prettier --write **/*.ts",
"format:check": "cargo fmt -- --check && prettier --check **/*.ts",
"lint": "cargo clippy --release -- -D warnings && eslint src/**/*.ts",
"lint:fix": "cargo clippy --release --all-targets --all-features -- -D warnings && cargo fix --release --allow-staged --allow-dirty && eslint --fix src/**/*.ts",
"pack": "ncc build lib/index.js -o dist",
"setup": "npm run format && npm run lint:fix && npm run test && npm run pack",
"ci:run": "npm install && npm run setup && npm start && npm run clean"
},
"dependencies": {
"neon-cli": "^0.3.3"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.7.12",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^2.8.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"typescript": "^3.6.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run setup"
}
},
"license": "MIT"
}