-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "daitrackr",
"description": "Track changelog of antennas in https://daichkr.hatelabo.jp/ as RSS",
"version": "0.0.1",
"author": "vzvu3k6k <vzvu3k6k@gmail.com>",
"bugs": {
"url": "https://github.com/vzvu3k6k/daitrackr/issues"
},
"homepage": "https://github.com/vzvu3k6k/daitrackr#readme",
"license": "CC0-1.0",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/vzvu3k6k/daitrackr.git"
},
"scripts": {
"build": "postcss sass/main.scss -o public/css/main.css",
"lint": "eslint *.js lib test && stylelint sass/*",
"start": "node index.js",
"start-dev": "npm start & npm run watch",
"test": "mocha",
"watch": "npm run build -- --watch"
},
"dependencies": {
"@vzvu3k6k/daichkr-client": "^0.1.5",
"apicache": "^1.2.3",
"express": "^4.16.4",
"pug": "^2.0.3",
"redis": "^2.8.0"
},
"devDependencies": {
"autoprefixer": "^9.3.1",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"postcss-cli": "^6.0.1",
"postcss-scss": "^2.0.0",
"precss": "^3.1.2",
"stylelint": "^9.8.0",
"stylelint-config-qiita": "^2.1.0"
}
}