-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.38 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
{
"name": "ingipro-practice",
"version": "1.0.0",
"description": "ingipro.com practice 2017",
"main": "index.js",
"dependencies": {
"d3": "4.10.0",
"express": "4.15.3",
"serve-static": "1.12.4",
"randomcolor": "0.5.3",
"socket.io": "2.0.3",
"uuid": "3.1.0"
},
"devDependencies": {
"assets-webpack-plugin": "3.5.1",
"autoprefixer": "7.1.2",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.1",
"babel-preset-env": "1.6.0",
"caniuse-api": "2.0.0",
"css-loader": "0.28.4",
"csscomb": "4.2.0",
"eslint": "4.3.0",
"eslint-plugin-react": "7.1.0",
"extract-text-webpack-plugin": "3.0.0",
"html-webpack-plugin": "2.30.1",
"lodash": "4.17.4",
"nodemon": "1.11.0",
"postcss-clearfix": "2.0.0",
"postcss-conditionals": "2.1.0",
"postcss-extend": "1.0.5",
"postcss-hexrgba": "0.2.1",
"postcss-import": "10.0.0",
"postcss-loader": "2.0.6",
"postcss-media-minmax": "3.0.0",
"postcss-nested": "2.1.0",
"postcss-sassy-mixins": "2.1.0",
"postcss-simple-vars": "4.0.0",
"postcss-size": "2.0.0",
"pre-commit": "1.2.2",
"style-loader": "0.18.2",
"stylelint": "8.0.0",
"stylelint-suitcss": "1.0.0",
"webpack": "3.4.1"
},
"scripts": {
"dev": "npm run watch & npm run start",
"start": "nodemon app/server.js",
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "npm run -s lint:eslint && npm run -s lint:stylelint",
"lint:csscomb": "files=$(git diff --name-only --diff-filter=ACMR --cached | grep .scss); if [ ! -z \"$files\" -a \"$files\" != \" \" ]; then eslint $files; fi",
"lint:eslint": "files=$(git diff --name-only --diff-filter=ACMR --cached | grep .js | grep -v .json); if [ ! -z \"$files\" -a \"$files\" != \" \" ]; then eslint $files; fi",
"lint:stylelint": "files=$(git diff --name-only --diff-filter=ACMR --cached | grep .scss); if [ ! -z \"$files\" -a \"$files\" != \" \" ]; then stylelint $files; fi",
"build": "NODE_ENV=production webpack",
"watch": "webpack --watch --color"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ixax/ingipro-practice.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ixax/ingipro-practice/issues"
},
"homepage": "https://github.com/ixax/ingipro-practice#readme"
}