-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.15 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
83
84
85
86
87
88
89
{
"name": "aux-thy-pro",
"version": "0.0.1",
"description": "Portefolio made with Webpack, Babel, PostCss",
"private": true,
"homepage": "https://auxane-thouary.pro",
"repository": {
"type": "git",
"url": ""
},
"author": "Auxane Thouary",
"engines": {
"node": "^6.11.5",
"npm": "^3.10.10"
},
"scripts": {
"rimraf": "./node_modules/.bin/rimraf",
"ncp": "./node_modules/.bin/ncp",
"build": "npm run clean && npm run build:webpack",
"build:webpack": "cross-env NODE_ENV=build node app",
"clean": "npm run rimraf public",
"prod": "cross-env NODE_ENV=production node app",
"dev": "cross-env NODE_ENV=development nodemon app.js",
"test": "cross-env NODE_ENV=test jest --watch --coverage",
"test:eslint": "./node_modules/.bin/eslint -c .eslintrc ./config && ./node_modules/.bin/eslint -c .eslintrc ./src && ./node_modules/.bin/eslint -c .eslintrc ./views",
"test:eslintfmt": "./node_modules/.bin/eslint -c .eslintrc --fix ./views/ || true",
"test:lintjs": "npm run test:eslint && npm run test:eslintfmt",
"test:stylelint": "./node_modules/.bin/stylelint './views/**/*.css' --config .stylelintrc",
"test:stylelfmt": "./node_modules/.bin/stylefmt -c .stylelintrc -r ./src/**/*.css || true",
"test:lintcss": "npm run test:stylelint",
"doc:jsdoc": "./node_modules/.bin/jsdoc2md --configure './docs/jsdoc/jsdoc.json' './src/**/*.js' > './docs/jsdoc/API.md'",
"precommit": "npm run test:lintjs && npm run test:lintcss"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.26.0",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"locale": "^0.1.0"
},
"devDependencies": {
"@glidejs/glide": "^3.0.3",
"browser-sync": "^2.18.13",
"chalk": "^2.3.0",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"css-mqpacker": "^6.0.1",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"handlebars": "^4.0.11",
"handlebars-loader": "^1.7.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jsdoc-babel": "^0.3.0",
"jsdoc-to-markdown": "^3.0.0",
"ncp": "^2.0.0",
"nodemon": "^1.12.1",
"postcss-cssnext": "^3.0.2",
"postcss-fontpath": "^1.0.0",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-mixins": "^6.2.0",
"postcss-url": "^7.1.2",
"rimraf": "^2.6.2",
"style-loader": "^0.19.0",
"stylefmt": "^6.0.0",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"svg-sprite-loader": "^3.7.3",
"webpack": "^3.8.1",
"webpack-config": "^7.5.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0",
"webpack-manifest-plugin": "^1.3.2"
}
}