-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "marko-example",
"version": "1.0.0",
"description": "An example project with markojs and apoll-fetch.",
"repository": {
"type": "git",
"url": "https://github.com/serayuzgur/marko-example"
},
"license": "MIT",
"devDependencies": {
"eslint": "4.19.1",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-prettier": "2.6.0",
"prettier": "1.12.1"
},
"dependencies": {
"apollo-fetch": "0.7.0",
"marko": "4.9.7",
"marko-starter": "2.0.3"
},
"scripts": {
"start": "marko-starter server",
"build": "rm -rf ./.cache && NODE_ENV=production marko-starter build",
"serve-static": "NODE_ENV=production marko-starter serve-static",
"lint": "eslint src/",
"test": "npm run lint",
"prettier": "prettier src/**/*.{js,css,less} *.js --write"
},
"eslintConfig": {
"extends": ["eslint:recommended", "prettier"],
"rules": {
"no-console": "off"
},
"env": {
"browser": true
}
},
"eslintIgnore": ["*.marko.js"],
"private": true
}