-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 948 Bytes
/
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
{
"name": "@ori/create-ori-app",
"version": "0.1.0-alpha.5",
"description": "Create Ori Next App",
"author": "Oriflame software",
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://oriflame.visualstudio.com/AppShell/_git/poc-01-frontend-b"
},
"scripts": {
"build": "next build && tsc --project tsconfig.json",
"dev": "next -p 8080",
"start": "next start",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll"
},
"bin": {
"create-ori-app": "./bin/coa.js"
},
"preferGlobal": true,
"dependencies": {
"fs-extra": "8.1.0",
"react": "16.12.0"
},
"devDependencies": {
"file-loader": "5.0.2"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}