forked from monkeytypegame/monkeytype
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.47 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
{
"name": "monkeytype",
"version": "1.5.6",
"license": "GPL-3.0",
"private": true,
"scripts": {
"start:dev": "concurrently --kill-others \"cd ./frontend && npm run start:dev\" \"cd ./backend && npm run start:dev\"",
"start:dev:be": "cd backend && npm run start:dev",
"start:dev:fe": "cd frontend && npm run start:dev",
"deploy:live": "cd frontend && npm run deploy:live",
"install:all": "sh ./bin/install.sh",
"lint": "./node_modules/.bin/eslint './backend/**/*.js' './frontend/src/js/**/*.js'",
"pretty": "prettier --check './backend/**/*.js' './frontend/src/**/*.{js,scss}' './frontend/static/**/*.{json,html}'",
"webpack": "cd frontend && npx webpack --config webpack.config.js"
},
"engines": {
"npm": "8.1.2"
},
"devDependencies": {
"@types/jquery": "^3.5.13",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"circular-dependency-plugin": "^5.2.2",
"concurrently": "5.3.0",
"eslint": "8.8.0",
"eslint-config-standard": "16.0.3",
"eslint-formatter-github": "1.0.11",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-json": "2.1.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-require-path-exists": "1.1.9",
"husky": "4.3.0",
"prettier": "2.1.2",
"pretty-quick": "3.1.0",
"webpack-cli": "^4.9.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint"
}
}
}