-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "neutrino-typescript-example",
"version": "1.0.0",
"private": true,
"description": "Example Neutrino TypeScript project",
"scripts": {
"prebuild": "rewrite-tsconfig",
"build": "webpack --mode production",
"prelint": "rewrite-tsconfig",
"lint": "eslint --format codeframe --ext mjs,jsx,js,tsx,ts src test && tsc",
"start": "npm run build && node build/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidje13/neutrino-typescript-example.git"
},
"author": "David Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidje13/neutrino-typescript-example/issues"
},
"homepage": "https://github.com/davidje13/neutrino-typescript-example#readme",
"devDependencies": {
"@neutrinojs/eslint": "9.x",
"@neutrinojs/jest": "9.x",
"@neutrinojs/node": "9.x",
"@types/jest": "26.x",
"eslint": "7.x",
"jest": "26.x",
"neutrino": "9.x",
"neutrinojs-typescript": "1.x",
"neutrinojs-typescript-eslint": "1.x",
"typescript": "4.2.x",
"webpack": "4.x",
"webpack-cli": "3.x"
}
}