-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"scripts": {
"preprocess:autoprefixer": "postcss --use autoprefixer -o src/web/static/bundle.css src/web/static/bundle.css",
"build-css": "lessc src/web/less/style.less src/web/static/bundle.css && npm run preprocess:autoprefixer",
"build-js": "webpack",
"build": "npm run build-js & npm run build-css",
"watch-css": "nodemon -q -I -w src/web/less --ext less --exec npm run build-css",
"watch-js": "webpack -w",
"main": "node src/main.js",
"watch": "npm run main & npm run watch-js & npm run watch-css",
"watch-cyg": "cygstart npm run main & cygstart npm run watch-js & cygstart npm run watch-css"
},
"name": "cv",
"version": "1.0.0",
"description": "my_cv",
"main": "bundle.js",
"dependencies": {
"body-parser": "^1.14.2",
"express": "^4.13.3",
"github-webhook-handler": "^0.5.0",
"history": "^1.13.1",
"immstruct": "^2.0.0",
"immutable": "^3.7.5",
"json-loader": "^0.5.4",
"moment": "^2.10.6",
"multer": "^1.1.0",
"omnipotent": "^1.2.1",
"omniscient": "^4.1.1",
"qwest": "^2.2.4",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-formdata": "^1.0.0",
"react-router": "^1.0.1",
"react-tools": "^0.13.3"
},
"devDependencies": {
"autoprefixer": "^6.1.2",
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.1.2",
"babelify": "^7.2.0",
"watchify": "^3.6.0",
"webpack": "^1.12.9"
},
"author": "Mats Jørgensen",
"license": "ISC",
"browserify": {
"transform": [
"babelify"
]
}
}