-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "corum",
"version": "0.1.0",
"description": "An open, democratic & self governing forum.",
"author": "Joe Alden <[email protected]> (joealden.com)",
"license": "MIT",
"private": true,
"homepage": "https://github.com/joealden/corum",
"repository": {
"type": "git",
"url": "git+https://github.com/joealden/corum.git"
},
"engines": {
"node": ">=8 <9",
"npm": ">= 5"
},
"lint-staged": {
"*.{js}": ["eslint ./*.js", "git add"],
"*.{js,json,css,md,graphql}": [
"prettier --config ./.prettierrc --write",
"git add"
]
},
"scripts": {
"dev": "nuxt --hostname 0.0.0.0",
"build": "nuxt build",
"start": "nuxt start --hostname 0.0.0.0",
"deploy": "yarn build && yarn start",
"test": "echo '[INFO] Tests are not yet implemented.'",
"precommit": "lint-staged && yarn test"
},
"dependencies": {
"@nuxtjs/apollo": "3.0.4",
"@nuxtjs/dotenv": "1.1.0",
"@nuxtjs/font-awesome": "1.0.3",
"@nuxtjs/pwa": "2.0.8",
"apollo-link-http": "1.5.3",
"graphql": "0.13.1",
"graphql-tag": "2.8.0",
"nuxt": "1.4.0",
"tinydate": "1.0.0"
},
"devDependencies": {
"babel-eslint": "8.2.2",
"eslint": "4.18.2",
"eslint-config-prettier": "2.9.0",
"eslint-config-standard": "11.0.0",
"eslint-friendly-formatter": "3.0.0",
"eslint-loader": "2.0.0",
"eslint-plugin-html": "4.0.2",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-standard": "3.0.1",
"husky": "0.14.3",
"lint-staged": "7.0.0",
"prettier": "1.11.1",
"stylus": "0.54.5",
"stylus-loader": "3.0.2"
}
}