-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.76 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
{
"name": "@cityofboston/next-client-common",
"version": "0.0.0",
"description": "Utilities for NextJS client apps",
"private": true,
"license": "CC0-1.0",
"main": "build/next-client-common.es5.js",
"module": "build/next-client-common.js",
"types": "build/next-client-common.d.ts",
"sideEffects": false,
"scripts": {
"watch": "concurrently \"yarn run build:babel -- --watch\" \"yarn run build:typescript -- --watch --preserveWatchOutput\" \"rollup -c -w\"",
"prebuild": "rimraf build",
"build": "concurrently \"yarn run build:typescript\" \"yarn run build:babel && rollup -c\"",
"build:typescript": "tsc --emitDeclarationOnly",
"build:babel": "cross-env BABEL_ENV=esm babel src --source-maps inline --ignore '**/*.stories.*','**/*.test.*' --out-dir build --extensions \".ts,.tsx\"",
"prepare": "yarn run build",
"test": "jest"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/"
]
},
"dependencies": {
"core-js": "^3.19.3",
"isomorphic-fetch": "^2.2.1"
},
"peerDependencies": {
"@babel/runtime": "^7.6.0",
"next": "^9.0.6",
"nprogress": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/runtime": "^7.6.0",
"@cityofboston/config-babel": "^0.0.0",
"@cityofboston/config-typescript": "^0.0.0",
"@types/google.analytics": "^0.0.39",
"@types/hapi": "^17.0.19",
"@types/isomorphic-fetch": "^0.0.34",
"@types/jest": "24.x.x",
"@types/shot": "^3.4.0",
"babel-core": "^7.0.0-0",
"concurrently": "^3.5.1",
"cross-env": "^5.2.0",
"jest": "^24.8.0",
"next": "^9.0.6",
"nprogress": "^0.2.0",
"rimraf": "^2.6.2",
"rollup": "^0.60.1",
"typescript": "^4.4.2"
}
}