-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 KB
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
{
"name": "hexlet-ddd",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"flow": "flow",
"flow-typed": "flow-typed",
"gulp": "gulp",
"eslint": "eslint",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexlet-boilerplates/javascript-package.git"
},
"author": "Kirill Mokevnin",
"license": "ISC",
"bugs": {
"url": "https://github.com/hexlet-boilerplates/javascript-package/issues"
},
"homepage": "https://github.com/hexlet-boilerplates/javascript-package#readme",
"dependencies": {
"javascript-state-machine": "*",
"bottlejs": "*",
"gulp": "*",
"lodash": "*",
"uuid-js": "*",
"validate.js": "*",
"date-fns": "*"
},
"devDependencies": {
"babel-cli": "*",
"babel-core": "*",
"babel-eslint": "*",
"babel-plugin-syntax-flow": "*",
"babel-plugin-transform-flow-strip-types": "*",
"babel-plugin-transform-runtime": "*",
"babel-preset-env": "*",
"babel-preset-stage-0": "*",
"eslint": "*",
"eslint-config-airbnb": "*",
"eslint-plugin-flowtype": "*",
"eslint-plugin-import": "*",
"flow-bin": "^0.3",
"flow-typed": "*",
"jest": "*"
}
}