-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.94 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
{
"name": "nmse",
"version": "1.5",
"description": "",
"main": "index.html",
"scripts": {
"start": "parcel src/index.html",
"lint:js": "npx eslint --cache .",
"lint:js:fix": "npm run lint:js -- --fix",
"prettify": "npx prettier --write \"**/*.{js,css,md,html}\"",
"lint": "npm run lint:js:fix && npm run prettify",
"lint:staged": "npx lint-staged",
"prebuild": "shx rm -rf dist/*",
"build": "parcel build src/index.html --public-url ./",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kt-std/nmse.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kt-std/nmse/issues"
},
"homepage": "https://github.com/kt-std/nmse#readme",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-syntax-jsx": "^7.12.13",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@babel/preset-env": "^7.13.12",
"autoprefixer": "^9.8.6",
"babel-preset-env": "^1.7.0",
"eslint": "^7.23.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"gh-pages": "^3.1.0",
"lint-staged": "^10.5.4",
"parcel-bundler": "1.12.3",
"postcss-modules": "^3.2.2",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"shx": "^0.3.3"
},
"babel": {
"plugins": [
[
"@babel/plugin-transform-react-jsx",
{
"throwIfNamespace": "true"
}
]
],
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"browserslist": [
"since 2021-01"
],
"pre-commit": "lint:staged",
"lint-staged": {
"**/*.{js,jsx}": [
"eslint --cache --fix"
],
"**/*.{js,css,md,html}": [
"prettier --write"
]
}
}