-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"name": "jfom",
"version": "1.0.0",
"description": "Create web page using a json file, which comes from server and store it in local storage",
"scripts": {
"build": "rm -rf .parcel-cache && npx parcel build ./index.html",
"start": "(npx parcel ./index.html) & (npx parcel watch ./index.html)",
"lint": "eslint . --ext .ts",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marafa1985/jfom.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/marafa1985/jfom/issues"
},
"homepage": "https://github.com/marafa1985/jfom#readme",
"devDependencies": {
"@parcel/transformer-sass": "^2.5.0",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^12.4.1",
"parcel": "^2.5.0",
"prettier": "2.6.2",
"sass": "^1.52.1",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"alias": {
"process": {
"global": "process"
}
}
}