forked from louh/weekender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.11 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "weekender",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": "https://github.com/louh/weekender",
"scripts": {
"clean": "rm -rf ./.cache && rm -rf ./dist && mkdir dist && touch ./dist/.gitkeep",
"test": "echo \"Error: no test specified\" && exit 1",
"copy-images": "cp -R ./tiles ./dist/ && cp -R ./test/fixtures ./dist/ && cp ./src/images/thumbnail.png ./dist/",
"start": "npm run copy-images && parcel src/index.html",
"build": "npm run copy-images && parcel build src/index.html"
},
"author": "",
"license": "MIT",
"dependencies": {
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/preset-env": "7.2.0",
"@babel/preset-react": "7.0.0",
"downshift": "3.1.5",
"leaflet": "1.3.4",
"leaflet-rastercoords": "1.0.3",
"nyc-subway-icons": "git+https://github.com/louh/nyc-subway-icons.git",
"parcel-bundler": "1.10.3",
"react": "16.6.3",
"react-dom": "16.6.3",
"react-router-dom": "4.3.1",
"sanitize-html": "1.19.3"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "7.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"eslint": "5.9.0",
"eslint-config-standard": "12.0.0",
"eslint-config-standard-react": "7.0.2",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-standard": "4.0.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
]
},
"eslint": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"es6": true
},
"plugins": [
"react"
],
"extends": [
"standard",
"standard-react"
],
"rules": {
"jsx-quotes": [
"error",
"prefer-double"
]
}
}
}