-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·82 lines (82 loc) · 2.5 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "netlife-starter",
"version": "2.0.0",
"description": "Starter for prototyping and production",
"author": "Netlife Research",
"contributors": [
{
"name": "Fredrik Jensen"
},
{
"name": "Kristoffer Brabrand"
},
{
"name": "Martin Berglund"
},
{
"name": "Knut Melvær"
},
{
"name": "Joakim Bording"
},
{
"name": "Nils Norman Haukås"
}
],
"license": "MIT",
"scripts": {
"start": "node server",
"prestart": "npm run metalsmith && npm run webpack",
"staging": "NODE_ENV=production npm run metalsmith && npm run webpack",
"metalsmith": "node metalsmith",
"webpack": "webpack",
"dev": "node metalsmith & node dev-server $ wait",
"dashboard": "node metalsmith & webpack-dashboard -- webpack-dev-server config dev-server & wait"
},
"repository": {
"type": "git",
"url": "git://github.com/netliferesearch/starter.git"
},
"dependencies": {
"autoprefixer": "^6.4.0",
"babel-core": "^6.0.20",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"basic-auth": "^1.0.4",
"css-loader": "^0.23.1",
"cssnano": "^3.7.4",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"flickity": "^2.1.1",
"gsap": "^1.20.4",
"handlebars": "^4.0.5",
"handlebars-layouts": "^3.1.3",
"jquery": "^3.3.1",
"metalsmith": "^1.0.0",
"metalsmith-assets": "^0.1.0",
"metalsmith-define": "^2.0.1",
"metalsmith-filenames": "^1.0.0",
"metalsmith-in-place": "^1.4.4",
"metalsmith-layouts": "^1.4.1",
"metalsmith-markdown": "^0.2.1",
"metalsmith-permalinks": "^0.1.1",
"metalsmith-serve": "0.0.7",
"metalsmith-watch": "^1.0.1",
"node-sass": "^3.8.0",
"postcss-loader": "^0.9.1",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.12.2",
"webpack-dashboard": "^0.1.8",
"webpack-dev-server": "^1.12.1"
},
"devDependencies": {
"eslint": "^3.4.0",
"eslint-config-netliferesearch": "^3.0.2",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0"
}
}