forked from limoncello-php/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.22 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
{
"name": "limoncello-client-demo",
"version": "0.10.0",
"description": "Limoncello Client Demo Application",
"main": "./public/assets/index.js",
"scripts": {
"dev-serve": "webpack-dev-server --config ./client/webpack/development.config.js --open",
"php-serve": "php -d zend.assertions=1 -d assert.exception=1 -S 0.0.0.0:8090 -t public",
"serve": "npm run php-serve & npm run dev-serve",
"watch": "webpack --config ./client/webpack/development.config.js --watch",
"build": "webpack --config ./client/webpack/production.config.js"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@limoncello-framework/json-api-client": "^0.1.4",
"@limoncello-framework/oauth-client": "^0.1.5",
"autoprefixer": "^9.1.3",
"bootstrap": "^4.1.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"jquery": "^3.3.1",
"node-sass": "^4.8.3",
"popper.js": "^1.14.3",
"postcss-loader": "^3.0.0",
"precss": "^3.1.2",
"sass-loader": "^7.0.1",
"style-loader": "^0.23.0",
"ts-loader": "^4.2.0",
"typescript": "^3.0.0",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.3"
}
}