forked from UXPin/adele
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.58 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
{
"name": "adele",
"version": "1.0.0",
"description": "",
"engines": {
"node": "7.2.0",
"npm": "3.10.9"
},
"main": "index.js",
"scripts": {
"test": "jest",
"serve": "NODE_ENV=development webpack-dev-server --open --no-info --progress --watch --hot",
"start": "NODE_ENV=production node server.js",
"local": "webpack -p --env.local",
"data-build": "node tools/data-builder.js",
"data-rebuild": "node tools/data-rebuilder.js",
"template-build": "node tools/template-builder && npm run data-build",
"postinstall": "webpack -p --env.production"
},
"author": "Marcin Treder",
"license": "MIT",
"dependencies": {
"axios": "^0.16.2",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.5.1",
"express": "^4.16.2",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.4.2",
"immutability-helper": "^2.3.1",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"raw-loader": "^0.5.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-svg-inline": "^2.0.1",
"styled-components": "^2.1.2",
"svg-inline-loader": "^0.8.0",
"webpack": "^3.5.5"
},
"devDependencies": {
"babel-jest": "^21.2.0",
"copy-webpack-plugin": "^4.3.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-15": "^1.0.5",
"enzyme-to-json": "^3.2.2",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"jest-enzyme": "^4.0.1",
"jest-styled-components": "^4.9.0",
"moment": "^2.20.1",
"react-test-renderer": "^15.6.1",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.0.0",
"webpack-dev-server": "^2.7.1"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
},
"moduleFileExtensions": [
"js",
"jsx",
"JSON"
],
"setupTestFrameworkScriptFile": "<rootDir>/testsConfig/enzymeConfig.js",
"setupFiles": [
"<rootDir>/testsConfig/enzymeConfig.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}