-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.23 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
{
"name": "just-animate-tools",
"version": "0.0.1",
"description": "DevTools for Just Animate",
"main": "index.js",
"scripts": {
"build": "webpack --config ./config/webpack.config.js",
"build:prod": "NODE_ENV=production webpack --config ./config/webpack.config.js",
"clean": "node_modules/.bin/del-cli plugin",
"prebuild": "npm run clean",
"prestart": "npm i && npm run build",
"start": "concurrently \"npm run watch\" \"npm run start:firefox\"",
"watch": "webpack --watch --config ./config/webpack.config.js",
"start:firefox": "cd ./plugin && web-ext run --firefox --url https://just-animate.github.io"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"concurrently": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"del-cli": "^1.1.0",
"file-loader": "^0.9.0",
"node-sass": "^4.5.0",
"sass-loader": "^5.0.1",
"vue-loader": "^12.1.0",
"vue-template-compiler": "^2.3.3",
"web-ext": "^2.0.0",
"webpack": "^2.6.1"
},
"dependencies": {
"vue": "^2.4.2"
}
}