forked from cssstats/cssstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"private": true,
"name": "cssstats",
"license": "MIT",
"version": "2.0.0",
"scripts": {
"start": "next start",
"build": "next build",
"build:components": "lab -d components/library --pkg",
"dev": "next",
"format": "prettier --write {api,components,packages,pages}/**/*.js",
"test": "lerna run test",
"pretest": "lerna bootstrap",
"publish": "lerna publish"
},
"dependencies": {
"@compositor/lab": "^1.0.0-37",
"@mdx-js/mdx": "^0.16.8",
"@zeit/next-mdx": "^1.2.0",
"css-unit-sort": "^1.1.1",
"humanize-plus": "^1.8.2",
"isomorphic-unfetch": "^3.0.0",
"lodash.uniq": "^4.5.0",
"next": "^8.0.0-canary.15",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1",
"styled-components": "^4.1.3",
"styled-system": "^1.1.1",
"titleize": "^1.0.1",
"victory": "^31.1.0"
},
"devDependencies": {
"lerna": "^3.10.7",
"prettier": "^1.16.1"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}