-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 2.17 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
49
50
51
52
53
54
55
56
{
"name": "fax-frontend",
"version": "1.0.0",
"description": "The fax frontend app communicates with the fax backend via a GraphQL api. ",
"repository": "github:palasthotel/fax",
"author": "PALASTHOTEL <[email protected]>",
"license": "MIT",
"main": "docroot/index.html",
"scripts": {
"sass": "node-sass-chokidar resources/assets/scss/all.scss > public/build/all.dev.css",
"autoprefixer": "postcss public/build/all.dev.css --use autoprefixer --output public/build/all.dev.css",
"cleancss": "cleancss -O1 --format beautify --output public/build/all.prod.css public/build/all.dev.css",
"build:css": "npm run sass && npm run autoprefixer && npm run cleancss",
"build:js-dev": "webpack -d --mode=development --config=webpack.config.dev.js",
"build:js-prod": "webpack -p --mode=production --config=webpack.config.prod.js",
"build:js": "npm run build:js-dev && npm run build:js-prod",
"build": "npm run build:js && npm run build:css",
"watch:js-dev": "webpack -d --mode=development --config=webpack.config.dev.js --watch",
"watch:js-prod": "webpack -p --mode=production --config=webpack.config.prod.js --watch",
"prettier": "prettier --write",
"postinstall": "npm run build"
},
"devDependencies": {
"autoprefixer": "^8.4.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"chokidar-cli": "^1.2.0",
"clean-css-cli": "^4.1.11",
"node-sass-chokidar": "^1.3.0",
"postcss": "^6.0.22",
"postcss-cli": "^5.0.0",
"prettier": "1.13.7",
"webpack": "^4.8.3",
"webpack-cli": "^2.0.14"
},
"dependencies": {
"apollo-boost": "^0.1.6",
"apollo-link-context": "^1.0.8",
"apollo-upload-client": "^8.1.0",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"js-cookie": "^2.2.0",
"json2csv": "^4.1.5",
"moment": "^2.22.2",
"react": "^16.3.2",
"react-apollo": "^2.1.4",
"react-dom": "^16.3.2",
"react-router-dom": "^4.2.2",
"uikit": "^3.0.0-rc.6"
}
}