-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "a-map-of-thrones",
"version": "1.0.0",
"description": "A React Tutorial of Fire and Ice",
"main": "index.js",
"repository": "git@personal.bitbucket.org:blake/learning-react-typescript.git",
"author": "Blake Simpson <blake.simpson@kartenmacherei.de>",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack -p",
"lint:all": "eslint app/js/*",
"lint:fix": "eslint app/js/* --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"setupTestFrameworkScriptFile": "./app/js/spec-helper.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
".*": "./node_modules/jest-css-modules"
}
},
"dependencies": {
"autoprefixer": "^7.2.2",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.5",
"css-loader": "^0.28.7",
"file-loader": "^1.1.5",
"postcss": "^6.0.14",
"postcss-loader": "^2.0.9",
"postcss-nested": "^2.1.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"style-loader": "^0.19.0",
"webpack": "^3.8.1"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.0",
"eslint": "^4.12.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.0.6",
"jest-css-modules": "^1.1.0",
"prettier-eslint": "^8.2.2",
"redux-mock-store": "^1.4.0",
"webpack-dev-server": "^2.9.7"
}
}