-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 951 Bytes
/
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
{
"name": "vanila-homepage",
"version": "1.0.0",
"description": "the vanila.io homepage",
"keywords": [],
"author": "[email protected]",
"scripts": {
"build": "parcel build src/index.html --no-source-maps",
"lint": "eslint src --fix",
"start": "parcel src/index.html"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-helmet": "^5.1.3",
"react-router": "^3.0.2",
"scrollreveal": "^3.3.4"
},
"devDependencies": {
"parcel": "^1.12.4",
"parcel-plugin-clean-dist": "^0.0.6",
"parcel-plugin-imagemin": "^4.0.2",
"parcel-plugin-static-files-copy": "^2.5.0"
},
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
}
}