This repository has been archived by the owner on Jul 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.74 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "weathery",
"version": "0.2.0",
"description": "mini weather app",
"main": "index.js",
"scripts": {
"postinstall": "webpack --config client/webpack.config.js",
"dev": "nodemon --watch server server/index & webpack --config client/webpack.config.js --watch",
"dev-client": "webpack-dev-server --config client/webpack.config.js --hot --inline --content-base public",
"start": "node server/index",
"test": "jest --coverage",
"test:watch": "jest --watch",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"knex:run": "knex migrate:latest && knex seed:run",
"start-mockapi": "webpack --config client/webpack.config.js --watch & node 'tests/data/createMockData.js' & json-server --watch './tests/data/mockdata.json' --routes './tests/data/routes.json'",
"commitmsg": "validate-commit-msg",
"commit": "git-cz "
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"client",
"shared"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/tests/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/tests/__mocks__/fileMock.js"
}
},
"babel": {
"presets": [
"env",
"react",
"stage-0"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/chhschou/weathery.git"
},
"keywords": [
"weather"
],
"author": "Chris Chou",
"license": "MIT",
"bugs": {
"url": "https://github.com/chhschou/weathery/issues"
},
"homepage": "https://github.com/chhschou/weathery#readme",
"devDependencies": {
"autoprefixer": "^7.1.4",
"babel-core": "^6.24.1",
"babel-jest": "^21.0.2",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"browser-env": "^3.2.0",
"commitizen": "^2.9.6",
"conventional-changelog-cli": "^1.3.4",
"css-hot-loader": "^1.3.2",
"css-loader": "^0.28.7",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.9.1",
"extract-text-webpack-plugin": "^3.0.0",
"husky": "^0.13.1",
"ignore-styles": "^5.0.1",
"jest": "^21.1.0",
"json-server": "^0.12.0",
"jsx-loader": "^0.13.2",
"nock": "^9.0.14",
"nodemon": "^1.11.0",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.6",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^15.6.2",
"redux-mock-store": "^1.2.3",
"sqlite3": "^3.1.10",
"style-loader": "^0.18.2",
"supertest": "^3.0.0",
"validate-commit-msg": "^2.11.1",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"express-jwt": "^5.3.0",
"jsonwebtoken": "^7.4.3",
"knex": "^0.13.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"rxjs": "^5.4.3",
"sodium": "^2.0.1",
"superagent": "^2.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": [
"feat",
"build",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"ci",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": "^#[0-9]+ - .*",
"subjectPatternErrorMsg": "Subject must be in format '#123 - Commit message'",
"helpMessage": ""
}
}
}