-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.31 KB
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
{
"name": "systems",
"version": "1.0.0",
"description": "Simplifications of common systems",
"main": "develop.js",
"scripts": {
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest",
"build": "tsc",
"build-web": "webpack",
"start": "npm run build && node build/develop.js",
"develop": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RGBz/systems.git"
},
"author": "RGBz",
"license": "MIT",
"bugs": {
"url": "https://github.com/RGBz/systems/issues"
},
"homepage": "https://github.com/RGBz/systems#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"timekeeper": "^2.2.0",
"ts-jest": "^26.5.1",
"ts-loader": "^9.2.5",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"webpack": "^5.49.0",
"webpack-cli": "^4.7.2"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts tsx"
}
}