-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.17 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.17 KB
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
{
"name": "jahe-react-starter-2",
"version": "1.0.0",
"description": "React Starter Project v2 - Similar to v1 but with Styled Components rather than SASS",
"repository": {
"type": "git",
"url": "https://github.com/jahe/jahe-react-starter-2.git"
},
"scripts": {
"start": "node devserver.js",
"build:clean": "rimraf ./dist",
"build:prod": "npm run build:clean && cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"build:prod:withstats": "npm run build:clean && cross-env NODE_ENV=production webpack --config webpack.config.prod.js --profile --json > webpack-stats.json",
"test": "jest --coverage",
"watch:test": "jest --watch",
"manage:translations": "babel-node ./translationRunner.js"
},
"author": "Jannik Hell",
"license": "MIT",
"devDependencies": {
"@types/react": "16.0.40",
"@types/react-dom": "16.0.4",
"babel-cli": "^6.23.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.2",
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.3",
"babel-plugin-react-intl": "^2.3.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-preset-env": "1.6.1",
"babel-preset-react": "^6.23.0",
"cross-env": "^5.1.1",
"cypress": "2.1.0",
"error-overlay-webpack-plugin": "0.1.4",
"eslint": "4.18.2",
"eslint-plugin-react": "^7.7.0",
"html-webpack-plugin": "3.0.4",
"jest-cli": "^22.4.2",
"react-hot-loader": "^4.0.0",
"react-intl-translations-manager": "^5.0.1",
"rimraf": "^2.6.1",
"ts-loader": "4.0.1",
"typescript": "2.8.0-dev.20180316",
"typescript-eslint-parser": "14.0.0",
"webpack": "4.1.0",
"webpack-cli": "2.0.10",
"webpack-dev-server": "3.1.0"
},
"dependencies": {
"babel-polyfill": "6.26.0",
"intl": "^1.2.5",
"json-loader": "^0.5.4",
"moment": "2.21.0",
"polished": "1.9.2",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-intl": "^2.2.3",
"react-redux": "^5.0.7",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"styled-components": "3.1.6"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/client/**/*.js"
]
}
}