forked from callstack/linaria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.21 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "linaria",
"version": "1.0.0-beta.13",
"description": "Blazing fast zero-runtime CSS in JS library",
"main": "lib/index.js",
"bin": "bin/linaria.js",
"files": [
"bin/",
"lib/",
"react.js",
"rollup.js",
"server.js",
"babel.js",
"loader.js",
"stylelint-config.js",
"index.d.ts",
"react.d.ts",
"server.d.ts"
],
"license": "MIT",
"repository": "[email protected]:callstack/linaria.git",
"bugs": {
"url": "https://github.com/callstack/linaria/issues"
},
"homepage": "https://github.com/callstack/linaria#readme",
"keywords": [
"react",
"css",
"css-in-js",
"styled-components",
"babel-plugin",
"babel",
"webpack"
],
"scripts": {
"lint": "eslint .",
"flow": "flow",
"typescript": "dtslint",
"test": "jest",
"test:unit": "jest __tests__",
"test:integration": "jest __integration-tests__",
"add-contributor": "all-contributors add",
"prebuild": "del lib",
"build": "babel src --out-dir lib --ignore '**/__tests__/**,**/__integration-tests__/**,**/__fixtures__/**' --source-maps && flow-copy-source -i '{**/__tests__/**,**/__integration-tests__/**,**/__fixtures__/**}' src lib",
"watch": "babel src --out-dir lib --ignore '**/__tests__/**,**/__integration-tests__/**,**/__fixtures__/**' --source-maps --watch",
"prepare": "yarn build",
"release": "release-it",
"now-build": "yarn --cwd website install && yarn --cwd website build",
"now-start": "yarn --cwd website server"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/plugin-syntax-jsx": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@callstack/eslint-config": "^3.0.0",
"@types/react": "^16.4.18",
"all-contributors-cli": "^5.4.1",
"babel-core": "^7.0.0-bridge.0",
"codecov": "^3.1.0",
"conventional-changelog-cli": "^2.0.5",
"del-cli": "^1.1.0",
"dtslint": "^0.3.0",
"eslint": "^5.7.0",
"eslint-plugin-prettier": "^3.0.0",
"flow-bin": "^0.90.0",
"flow-copy-source": "^2.0.2",
"jest": "^23.6.0",
"jest-image-snapshot": "^2.6.0",
"prettier": "^1.14.3",
"puppeteer": "^1.9.0",
"react": "^16.5.2",
"react-test-renderer": "^16.5.2",
"release-it": "^7.6.2"
},
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/generator": "^7.1.3",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/register": "^7.0.0",
"@emotion/is-prop-valid": "^0.7.3",
"cosmiconfig": "^5.0.7",
"dedent": "^0.7.0",
"enhanced-resolve": "^4.1.0",
"glob": "^7.1.3",
"loader-utils": "^1.1.0",
"mkdirp": "^0.5.1",
"normalize-path": "^3.0.0",
"postcss": "^7.0.2",
"react-is": "^16.5.1",
"rollup-pluginutils": "^2.3.3",
"source-map": "^0.7.3",
"stylis": "^3.5.4",
"yargs": "^12.0.5"
},
"resolutions": {
"**/babel-core": "7.0.0-bridge.0"
},
"jest": {
"testRegex": "/__(integration-)?tests__/.*\\.(test|spec)\\.js$",
"testEnvironment": "node"
}
}