-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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": "Appbuild",
"version": "2.0.0",
"license": "MIT",
"private": true,
"author": "LinkValue",
"contributors": [
{
"name": "Oliver Thébault",
"email": "[email protected]"
},
{
"name": "Celia Lafond",
"email": "[email protected]"
}
],
"engines": {
"node": "7.7.3"
},
"scripts": {
"start": "webpack-dev-server --public local.appbuild.com:8080 --watch-poll",
"build": "NODE_ENV=production webpack",
"lint": "npm run lint-js && npm run lint-scss",
"lint-js": "eslint src/",
"lint-scss": "sass-lint --verbose --no-exit",
"fix": "npm run fix-js",
"fix-js": "eslint --fix src/"
},
"dependencies": {
"fine-uploader": "5.16.0",
"foundation-sites": "6.4.3",
"jquery": "3.4.0"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-minify-webpack-plugin": "0.2.0",
"babel-preset-env": "1.6.0",
"copy-webpack-plugin": "4.0.1",
"css-loader": "3.1.0",
"eslint": "4.18.2",
"eslint-loader": "1.9.0",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "0.10.1",
"isdev": "1.0.1",
"node-sass": "4.5.3",
"postcss-loader": "1.3.3",
"sass-lint": "1.11.1",
"sass-loader": "6.0.6",
"source-map-loader": "0.2.1",
"style-loader": "0.14.1",
"url-loader": "2.1.0",
"webpack": "3.12.0",
"webpack-dev-server": "3.1.11"
}
}