-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "macromeals",
"version": "1.0.0",
"main": "index.js",
"author": "Josh Magness",
"license": "MIT",
"scripts": {
"prepare:staging": "babel-node deploy/prepare.js staging",
"craft:staging": "babel-node deploy/craft.js staging",
"release:staging": "babel-node deploy/release.js staging",
"config:staging": "babel-node deploy/config.js staging",
"uploads:staging": "babel-node deploy/uploads.js staging",
"database:staging": "babel-node deploy/database.js staging",
"start": "webpack -w"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chart.js": "^2.7.1",
"copy-webpack-plugin": "^4.4.2",
"css-loader": "^0.28.10",
"deploy": "git+ssh://git@bitbucket.org/magnessjo/deployment.git",
"extract-text-webpack-plugin": "^3.0.2",
"gaze": "^1.1.2",
"imagemin-webpack-plugin": "^2.0.0",
"postcss": "^6.0.19",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.1",
"style-loader": "^0.20.2",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^3.0.0",
"whatwg-fetch": "^2.0.3"
},
"dependencies": {
"babel-loader": "^7.1.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1"
},
"postcss": {
"map": true,
"plugins": {
"postcss-import": {},
"postcss-cssnext": {}
}
},
"babel": {
"presets": [
[
"env"
]
]
}
}