forked from Doist/reactist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 3.04 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
{
"name": "@doist/reactist",
"version": "1.15.18",
"description": "Open source React components by Doist",
"main": "./dist/reactist.js",
"scripts": {
"build": "./node_modules/.bin/webpack -p --progress --color",
"build-watch": "npm run build -- --watch",
"check": "./node_modules/.bin/eslint . --ext .js --ext .jsx",
"test": "./node_modules/.bin/jest",
"test-watch": "npm run test -- --watch --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs",
"build-all": "npm run build && npm run build-storybook"
},
"repository": "git+https://github.com/Doist/reactist.git",
"author": "Henning Muszynski <[email protected]> (http://doist.com)",
"license": "MIT",
"homepage": "https://github.com/Doist/reactist#readme",
"devDependencies": {
"@storybook/addon-actions": "^3.3.6",
"@storybook/addon-info": "^3.2.11",
"@storybook/addon-knobs": "^3.2.12",
"@storybook/addon-links": "^3.2.10",
"@storybook/addon-options": "^3.2.12",
"@storybook/react": "^3.2.11",
"babel-core": "^6.24.1",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.1.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.5",
"css-loader": "^0.28.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.0",
"eslint": "^4.16.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-react": "^7.5.1",
"jest": "^22.1.4",
"less": "^3.0.4",
"less-loader": "^4.0.3",
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"path": "^0.12.7",
"prettier": "1.10.2",
"prop-types": "^15.5.8",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-storybook-addon-chapters": "^2.1.1",
"react-svg-loader": "^2.1.0",
"react-test-renderer": "^16.2.0",
"regenerator-runtime": "^0.11.1",
"style-loader": "^0.19.1",
"svg-url-loader": "^2.0.2",
"webpack": "^3.10.0"
},
"peerDependencies": {
"classnames": "^2.2.5",
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"react": "^15.5.4 || ^16.2.0",
"react-dom": "^15.5.4 || ^16.2.0"
},
"jest": {
"setupTestFrameworkScriptFile": "./scripts/jestSetup.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/src/__mocks__/styleMock.js"
}
}
}