-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.71 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
{
"name": "property-icons",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node --harmony .",
"dev": "NODE_ENV=development ./node_modules/.bin/nodemon -x \"node --harmony --inspect\" .",
"purge": "rm -rf node_modules; npm i",
"pretest": "npm run test:lint",
"test": "echo \"Error: no test specified\" && exit 1",
"test:unit": "./node_modules/.bin/jest --verbose",
"test:lint": "./node_modules/.bin/eslint . --color",
"test:watch": "./node_modules/.bin/jest --watchAll --verbose"
},
"author": "Clear Capital",
"repository": {
"type": "git"
},
"license": "UNLICENSED",
"engines": {
"node": "10.1.0",
"npm": "6.1.0"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"collectCoverage": true
},
"dependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1",
"convert-svg-to-png": "^0.4.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.2",
"babel-jest": "22.4.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-env": "1.7.0",
"babel-preset-flow": "6.23.0",
"babel-preset-react-app": "3.1.1",
"eslint-config-standard-react": "5.0.0",
"eslint-config-standard": "10.2.1",
"eslint-loader": "1.9.0",
"eslint-plugin-flowtype": "2.34.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-node": "5.1.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-react": "7.6.1",
"eslint-plugin-standard": "3.0.1",
"eslint": "4.18.2",
"jest": "22.4.2",
"nodemon": "^1.17.5",
"standard": "11.0.0"
}
}