-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
119 lines (119 loc) · 3.79 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
110
111
112
113
114
115
116
117
118
119
{
"name": "css-in-js-playground",
"version": "1.0.0",
"author": "Dustin Schau <[email protected]>",
"main": "index.js",
"license": "MIT",
"scripts": {
"precommit": "pretty-quick --staged",
"prebuild": "npm run clean",
"build": "webpack --hide-modules",
"postbuild": "npm run copy",
"build:production": "npm run build -- --env.environment production",
"clean": "del-cli \"dist/**/*\"",
"copy": "cp src/manifest.json assets/og-image.jpeg dist",
"format": "npm run format:js & npm run format:ts",
"format:js": "prettier --write --single-quote \"src/snippets/**/*.js\"",
"format:ts":
"prettier --write --single-quote --parser typescript \"src/**/*.ts\" \"src/**/*.tsx\"",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"markdown": "md-magic",
"start":
"webpack-dev-server --env.environment development --hot --port 8000",
"stop":
"kill-port 8000 || echo \"Could not kill port 8000; please kill manually\"",
"test": "jest",
"pretest:integration":
"npm start -- --quiet & wait-on http://localhost:8000",
"test:integration": "jest -c integration-tests/jest.config.js",
"posttest:integration": "npm run stop"
},
"devDependencies": {
"@types/codemirror": "^0.0.47",
"@types/jest": "~21.1.3",
"@types/node": "8.0.32",
"@types/react-dom": "~16.0.4",
"@types/webpack-env": "^1.13.1",
"awesome-typescript-loader": "^3.2.3",
"babel-eslint": "~8.0.1",
"compression-webpack-plugin": "^1.0.1",
"cross-port-killer": "~1.0.1",
"css-loader": "^0.28.7",
"del-cli": "^1.1.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.0",
"enzyme-to-json": "^3.1.0",
"eslint": "^4.9.0",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.0",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"jest": "~21.2.1",
"jest-enzyme": "^4.0.0",
"jest-image-snapshot": "~1.0.1",
"jest-preset-typescript": "^1.0.0",
"markdown-magic": "^0.1.19",
"mock-local-storage": "^1.0.5",
"name-all-modules-plugin": "^1.0.1",
"prettier": "~1.11.1",
"pretty-quick": "~1.4.1",
"puppeteer": "~0.12.0",
"raf": "^3.4.0",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "16",
"source-map-loader": "^0.2.2",
"style-loader": "^0.19.0",
"ts-jest": "^21.0.1",
"typescript": "^2.5.3",
"typescript-eslint-parser": "~8.0.0",
"wait-on": "~2.0.2",
"webpack": "^3.6.0",
"webpack-config-assign": "^1.0.0",
"webpack-dev-server": "^2.9.1",
"worker-loader": "^1.0.0"
},
"dependencies": {
"aphrodite": "~1.2.4",
"buble": "~0.16.0",
"codemirror": "~5.31.0",
"corejs": "~1.0.0",
"cxs": "~6.1.0",
"emotion": "~8.0.2-12",
"fela": "^6.0.4",
"fela-preset-web": "^7.0.0",
"glamor": "~2.20.40",
"glamorous": "~4.12.1",
"history": "~4.7.2",
"jss": "~9.1.0",
"jss-preset-default": "~4.0.1",
"jsxstyle": "2.0.1",
"linaria": "^0.2.0",
"lodash.camelcase": "~4.3.0",
"lodash.debounce": "~4.0.8",
"lodash.kebabcase": "~4.1.1",
"lz-string": "~1.4.4",
"normalize.css": "~7.0.0",
"offline-plugin": "~4.8.4",
"polished": "~1.9.0",
"query-string": "~5.0.0",
"radium": "~0.19.4",
"react": "~16.2.0",
"react-dom": "~16.2.0",
"react-emotion": "~8.0.2-13",
"react-fela": "^6.0.5",
"react-icons": "~2.2.5",
"react-jss": "~8.0.0",
"styled-components": "~2.4.0",
"styletron": "~3.0.0-rc.3",
"styletron-react": "~3.0.0-rc.3",
"webfontloader": "~1.6.28",
"yocss": "~0.3.0"
}
}