forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.81 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.81 KB
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
110
111
112
113
114
115
116
117
118
{
"name": "@codesandbox/common",
"version": "1.0.8",
"repository": {
"type": "git",
"url": "https://github.com/codesandbox/codesandbox-client",
"directory": "packages/common"
},
"files": [
"lib"
],
"source": true,
"scripts": {
"build": "yarn build:lib",
"build:dev": "yarn build",
"build:lib": "yarn clean && yarn tsc && yarn babel src --out-dir lib && yarn cpx \"src/**/*.{css,svg,png,jpg,woff,woff2}\" lib",
"build:storybook": "build-storybook -c .storybook -o public",
"clean": "rimraf lib && yarn rimraf node_modules/@types/react-native",
"lint": "eslint --ext .js,.ts,.tsx src",
"prepublish": "yarn build",
"start": "(yarn tsc --watch & yarn babel src --out-dir lib --watch & yarn cpx \"src/**/*.{css,svg,png,jpg,woff,woff2}\" lib --watch)",
"start:storybook": "start-storybook",
"test": "cross-env NODE_ENV=test jest --maxWorkers 2",
"typecheck": "tsc --noEmit"
},
"jest": {
"moduleDirectories": [
"node_modules"
],
"modulePathIgnorePatterns": [
"lib"
],
"setupFilesAfterEnv": [
"<rootDir>src/test/setupTests.ts"
],
"testEnvironment": "enzyme",
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest",
"^.+\\.svg$": "jest-svg-transformer"
},
"moduleNameMapper": {
"\\.css$": "<rootDir>/__mocks__/styleMock.js"
}
},
"dependencies": {
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/polyfill": "^7.4.4",
"@codesandbox/notifications": "^1.0.6",
"@codesandbox/template-icons": "^1.1.0",
"@sentry/browser": "^5.9.0",
"@styled-system/css": "^5.0.23",
"@tippy.js/react": "^3.1.1",
"babel-plugin-preval": "^3.0.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"codesandbox-api": "0.0.23",
"color": "0.11.4",
"date-fns": "^2.0.0",
"dot-object": "1.9.0",
"error-polyfill": "^0.1.2",
"humps": "CompuIves/humps",
"image-extensions": "^1.1.0",
"immer": "^3.2.0",
"lodash": "^4.17.11",
"markty-toml": "^0.0.9",
"memoize-one": "^3.1.1",
"ot": "^0.0.15",
"react": "^16.8.6",
"react-icons": "^2.2.7",
"react-input-autosize": "^2.2.1",
"react-router-dom": "^5.0.1",
"react-spring": "^8.0.25",
"react-textarea-autosize": "^6.1.0",
"semver": "^5.6.0",
"sha1": "^1.1.1",
"styled-components": "^4.2.0",
"typeface-inter": "^3.10.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@storybook/addon-a11y": "^5.1.11",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-storysource": "^5.1.11",
"@storybook/addon-viewport": "^5.1.11",
"@storybook/react": "^5.1.9",
"@types/color": "0.12.1",
"@types/humps": "^1.1.2",
"@types/lodash": "^4.14.123",
"@types/react": "^16.8.12",
"@types/react-icons": "^2.2.7",
"@types/storybook__addon-actions": "^3.4.3",
"@types/styled-components": "^4.1.13",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-macros": "^2.6.1",
"babel-plugin-system-import-transformer": "^4.0.0",
"cpx": "^1.5.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"jest": "^24.9.0",
"jest-environment-enzyme": "^7.1.0",
"jest-enzyme": "^7.1.0",
"jest-styled-components": "^6.3.4",
"jest-svg-transformer": "^1.0.0",
"rimraf": "^2.6.3",
"typescript": "3.7.2",
"yarn": "^1.17.3"
}
}