-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.93 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": "@ticketswap/solar",
"private": false,
"version": "0.0.0-development",
"scripts": {
"commit": "git-cz",
"start": "rollup -c --watch",
"build": "rollup -c --environment NODE_ENV:production",
"prepublishOnly": "npm run build",
"lint": "eslint src",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:deploy": "storybook-to-ghpages",
"prettier": "prettier \"**/*.+(js|jsx|json|yml|yaml|css|scss|ts|tsx|md|mdx|graphql)\"",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"format": "npm run prettier -- --write",
"validate": "npm run test && npm run prettier -- --list-different",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"downshift": "^3.2.7",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"styled-components": "^4.1.3",
"react-spring": "^7.2.10"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@storybook/react": "^5.0.1",
"@storybook/storybook-deployer": "^2.8.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-plugin-styled-components": "^1.10.0",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0",
"downshift": "^3.2.7",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"express": "^4.16.4",
"husky": "^1.3.1",
"is-ci-cli": "^1.1.1",
"jest": "^24.4.0",
"jest-dom": "^3.1.2",
"jest-runner-eslint": "^0.7.3",
"jest-styled-components": "^6.3.1",
"jest-watch-select-projects": "^0.1.1",
"jest-watch-typeahead": "^0.2.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-measure": "^2.2.4",
"react-spring": "^7.2.10",
"react-testing-library": "^6.0.0",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-filesize": "^6.0.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-progress": "^1.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-visualizer": "^1.0.2",
"rollup-watch": "^4.3.1",
"semantic-release": "^15.13.3",
"styled-components": "^4.1.3"
},
"main": "dist/solar.js",
"module": "dist/solar.es.js",
"files": [
"dist"
],
"license": "MIT",
"repository": "https://github.com/TicketSwap/solar"
}