forked from autoprefixer/autoprefixer.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 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
{
"name": "autoprefixer_online",
"version": "1.0.0",
"main": "./src/main.js",
"repository": "[email protected]:autoprefixer/autoprefixer.github.io.git",
"author": "ymatuhin <[email protected]>",
"license": "MIT",
"scripts": {
"start": "run-p start:*",
"start:static": "bundle exec jekyll server",
"start:js": "parcel watch ./src/main.js --out-dir ./assets --public-url /assets --no-source-maps --no-cache",
"build:js": "parcel build ./src/main.js --out-dir ./assets --public-url /assets --no-source-maps --no-cache",
"postinstall": "bundle install"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.10.3"
},
"dependencies": {
"autoprefixer": "^9.7.6",
"babel-runtime": "^6.26.0",
"highlight.js": "^10.0.2",
"postcss": "^7.0.29",
"store": "^2.0.12"
}
}