This repository has been archived by the owner on Jul 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
78 lines (78 loc) · 1.86 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
{
"name": "@nosplatform/create-nos-dapp",
"version": "0.2.3",
"description": "Create a dapp on the nOS platform",
"license": "MIT",
"main": "lib/index.js",
"bin": {
"create-nos-dapp": "lib/index.js"
},
"scripts": {
"precommit": "yarn lint && yarn build && git add .",
"predev": "yarn build",
"lint": "eslint src/**/*.js",
"start": "cross-env NODE_ENV=production node lib/index.js",
"dev": "cross-env NODE_ENV=development node lib/index.js",
"build": "rimraf lib && ./node_modules/.bin/babel src --out-dir lib",
"test": "jest"
},
"dependencies": {
"@babel/polyfill": "7.0.0",
"argparse": "1.0.10",
"chalk": "2.4.1",
"execa": "1.0.0",
"figlet": "1.2.0",
"fs-extra": "7.0.0",
"inquirer": "6.2.0",
"ora": "3.0.0",
"rimraf": "2.6.2",
"update-notifier": "2.5.0"
},
"devDependencies": {
"@babel/cli": "7.2.0",
"@babel/core": "7.2.0",
"@babel/preset-env": "7.2.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"cross-env": "5.2.0",
"eslint": "5.10.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-prettier": "3.0.0",
"husky": "0.14.3",
"jest": "23.6.0",
"mock-stdin": "0.3.1",
"prettier": "1.15.3"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nos/create-nos-dapp.git"
},
"keywords": [
"nOS",
"NEO",
"Blockhain",
"CLI",
"starter",
"react",
"js",
"javascript"
],
"author": "nOS <contact@nos.io>",
"bugs": {
"url": "https://github.com/nos/create-nos-dapp/issues"
},
"homepage": "https://github.com/nos/create-nos-dapp#readme",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/packages/"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}