This repository was archived by the owner on Aug 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.24 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
{
"name": "plot-notes",
"private": true,
"dependencies": {
"@rails/webpacker": "^4.0.2",
"cryptiles": "4.1.2",
"hoek": "4.2.1",
"jest-fetch-mock": "^2.1.2",
"lodash": "4.17.13",
"lodash.template": "^4.5.0",
"npm": "6.13.4",
"npx": "^10.2.0",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-google": "^0.13.0",
"husky": ">=1",
"jest": "^24.8.0",
"lint-staged": ">=8",
"prettier": "1.18.2",
"webpack-dev-server": "^3.4.1"
},
"jest": {
"automock": false,
"setupFiles": [
"./spec/javascripts/test_setup.js"
],
"roots": [
"spec/javascripts"
]
},
"scripts": {
"stylelint": "stylelint '**/*.scss'",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}