-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "wildcard",
"version": "1.0.0",
"description": "An image placeholder service.",
"main": "index.js",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"build": "webpack --mode production",
"checkPHAN": "cat phan-result.txt | cut -d ' ' -f2 | sort | uniq -c | sort -n -r",
"compile": "webpack --mode development --progress --colors --watch --hide-modules",
"cypress": "cypress open",
"regen": "composer dump-autoload -o",
"runPHAN": "php vendor/bin/phan --progress-bar -o phan-result.txt",
"servePHP": "php -S 127.0.0.1:9999",
"serveE2E": "WAIT_FOR_MESSAGE='Reloading Browsers...' cypressAppWatcher npm run compile",
"watch": "webpack --mode development --progress --colors --watch --hide-modules"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"css-loader": "^3.0.0",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
},
"dependencies": {
"axios": "^0.19.0",
"lodash": "^4.17.11",
"vue": "^2.6.10",
"vue-draggable-resizable": "^2.0.0-rc2",
"vue-persist": "^0.4.0",
"vue-router": "^3.0.6",
"vuex": "^3.1.1",
"vuex-persist": "^2.1.0"
}
}