This repository was archived by the owner on Apr 23, 2024. 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
53 lines (53 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.51 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
{
"name": "shri18-2-hw",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"deps": "npm install && npm install --prefix=src/server",
"start-client": "rm -rf public && gulp",
"start-server": "cd src/server/ && npm run start-dev",
"start-dev": "npm-run-all --parallel start-client start-server",
"build": "rm -rf public && gulp build",
"lint:css": "stylelint src/client/**/*.scss",
"lint:ts": "tslint src/**/*.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/webaudioapi": "0.0.27",
"browser-sync": "^2.24.5",
"browserify": "^16.2.3",
"eslint": "^5.7.0",
"eslint-plugin-jest": "^21.25.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-clean-css": "^3.9.4",
"gulp-concat": "^2.6.1",
"gulp-declare": "^0.3.0",
"gulp-flatten": "^0.4.0",
"gulp-handlebars": "^5.0.2",
"gulp-imagemin": "^4.1.0",
"gulp-sass": "^4.0.1",
"gulp-stylelint": "^7.0.0",
"gulp-typescript": "^5.0.0-alpha.3",
"gulp-wrap": "^0.14.0",
"husky": "^1.1.2",
"merge-stream": "^1.0.1",
"npm-run-all": "^4.1.3",
"stylelint": "^9.6.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.3.1",
"tsify": "^4.0.0",
"tslint": "^5.11.0",
"typescript": "^3.1.3",
"vinyl-source-stream": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:css && npm run lint:ts",
"pre-push": "npm run lint:css && npm run lint:ts"
}
},
"dependencies": {}
}