-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.76 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
90
91
92
93
94
95
96
97
98
99
{
"name": "react-babel-webpack-boilerplate",
"version": "1.2.4",
"description": "",
"main": "app/main.jsx",
"scripts": {
"lint": "eslint 'app/**/*.@(js|jsx)'",
"lint:msg": "validate-commit-msg",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "yarn start:dev",
"start:dev": "webpack-dev-server --devtool eval --progress --hot --content-base app",
"deploy": "NODE_ENV=production webpack -p --config webpack.production.config.js",
"deploy-windows": "SET NODE_ENV=production & webpack -p --config webpack.production.config.js",
"validate": "npm ls",
"commit": "git cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1"
},
"dependencies": {
"aframe": "^0.3.2",
"aframe-animation-component": "^3.0.4",
"aframe-extras": "^3.1.0",
"axios": "^0.15.3",
"babel-runtime": "6.x",
"extract-text-webpack-plugin": "v2.0.0-beta.4",
"file-loader": "^0.9.0",
"gsap": "^1.19.0",
"i18next": "^4.1.1",
"i18next-xhr-backend": "^1.2.1",
"isomorphic-style-loader": "^1.1.0",
"json-loader": "^0.5.4",
"kframe": "^0.3.0",
"node-sass": "^3.13.0",
"nodemon": "^1.11.0",
"nunjucks": "^3.0.0",
"nunjucks-loader": "^2.4.5",
"postcss-loader": "^1.2.0",
"postcss-modules": "^0.5.2",
"resolve-url": "^0.2.1",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^4.0.2",
"url-loader": "^0.5.7"
},
"devDependencies": {
"babel-core": "6.x",
"babel-eslint": "6.x",
"babel-loader": "6.x",
"babel-plugin-transform-runtime": "6.x",
"babel-preset-es2015": "6.x",
"babel-preset-stage-0": "6.x",
"commitizen": "^2.5.0",
"conventional-changelog-cli": "1.x",
"copy-webpack-plugin": "latest",
"css-loader": "~0.23.0",
"cz-conventional-changelog": "^1.1.5",
"eslint": "latest",
"eslint-config-airbnb": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jsx-a11y": "2.x",
"eslint-plugin-react": "latest",
"ghooks": "^1.0.3",
"open-browser-webpack-plugin": "0.0.2",
"style-loader": "~0.13.0",
"validate-commit-msg": "2.x",
"webpack": "v2.1.0-beta.27",
"webpack-dev-server": "2.1.0-beta.12"
},
"keywords": [
"es6",
"web app",
"boilerplate"
],
"author": "Ruan Yifeng",
"license": "MIT",
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run lint:msg"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}