File tree 3 files changed +20
-3
lines changed
3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -71,3 +71,6 @@ typings/
71
71
72
72
# Serverless directories
73
73
.serverless
74
+
75
+ # Parcel build output
76
+ dist
Original file line number Diff line number Diff line change
1
+ {
2
+ "plugins": {
3
+ "autoprefixer": {
4
+ "browsers": "last 2 versions, > 1%"
5
+ }
6
+ }
7
+ }
Original file line number Diff line number Diff line change 12
12
" src"
13
13
],
14
14
"scripts" : {
15
- "lint" : " eslint src/**/*.js" ,
16
- "start" : " node src/index.js"
15
+ "build" : " parcel build statik/index.html" ,
16
+ "lint" : " eslint statik/**/*.js" ,
17
+ "start" : " parcel statik/index.html -p 8080 --open"
17
18
},
18
19
"repository" : {
19
20
"type" : " git" ,
22
23
"bugs" : {
23
24
"url" : " https://github.com/statikstack/html-css-javascript-parcel/issues"
24
25
},
25
- "dependencies" : {},
26
+ "dependencies" : {
27
+ "normalize.css" : " ^8.0.0"
28
+ },
26
29
"devDependencies" : {
30
+ "autoprefixer" : " 9.0.0" ,
27
31
"eslint" : " 5.1.0" ,
28
32
"eslint-config-prettier" : " 2.9.0" ,
29
33
"eslint-plugin-prettier" : " 2.6.2" ,
34
+ "parcel-bundler" : " 1.9.7" ,
35
+ "parcel-plugin-clean-dist" : " 0.0.6" ,
36
+ "parcel-plugin-imagemin" : " 1.1.2" ,
30
37
"prettier" : " 1.13.7"
31
38
},
32
39
"license" : " MIT"
You can’t perform that action at this time.
0 commit comments