This repository was archived by the owner on May 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.57 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.57 KB
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
{
"author": "Florian Wendelborn <dodekeract@users.noreply.github.com>",
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
],
"stage-3"
]
},
"dependencies": {
"bulma": "^0.3.2",
"hyperapp": "^0.7.1",
"postcss-loader": "^1.3.3",
"superagent": "^3.5.0"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-cli": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.2.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-3": "^6.22.0",
"css-loader": "^0.27.3",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.2",
"webpack": "^2.2.1"
},
"license": "MIT",
"main": "index.js",
"name": "smartflat-web-ui",
"repository": "https://dodekeract@github.com/smartflat/smartflat-web-ui.git",
"scripts": {
"build": "yarn run build-clean && yarn run build-copy && yarn run build-transpile && yarn run build-webpack",
"build-copy": "cp -r source/images build/images && cp source/client/index.html build/client/index.html",
"build-clean": "rm -rf build/ && mkdir -p build/client",
"build-transpile": "babel source/info.js --out-file build/info.js",
"build-webpack": "webpack",
"watch": "nodemon --watch source --watch webpack.config.js --watch package.json -e js,jsx,html,sass,css,svg,png,css --exec \"yarn run build\""
},
"version": "0.0.0"
}