-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.11 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
{
"name": "jahe-react-starter",
"version": "1.0.0",
"description": "React Starter Project",
"repository": {
"type": "git",
"url": "https://github.com/jahe/jahe-react-starter.git"
},
"scripts": {
"start": "node devserver.js",
"build:clean": "rimraf ./public/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",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "Jannik Hell",
"license": "MIT",
"devDependencies": {
"@storybook/addon-info": "^3.2.11",
"@storybook/addon-knobs": "^3.2.10",
"@storybook/react": "^3.2.11",
"autoprefixer": "^6.7.6",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.0",
"babel-plugin-react-intl": "^2.3.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"cross-env": "^3.2.3",
"css-loader": "^0.26.4",
"eslint": "^3.17.1",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "^2.1.0",
"jest-cli": "^19.0.2",
"node-sass": "^4.5.0",
"postcss-loader": "^1.3.3",
"react-hot-loader": "^3.0.0-beta.7",
"react-intl-translations-manager": "^4.0.1",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.2",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.4"
},
"dependencies": {
"intl": "^1.2.5",
"json-loader": "^0.5.4",
"moment": "^2.17.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-intl": "^2.2.3",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/client/**/*.js"
]
}
}