forked from MatthewKosloski/pixem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·73 lines (73 loc) · 1.92 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
{
"name": "pixem-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "gatsby develop",
"build": "gatsby build --prefix-paths",
"test": "jest --verbose",
"lint": "./node_modules/.bin/tslint --project ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/codemirror": "0.0.58",
"@types/grid-styled": "^4.2.0",
"@types/jest": "^23.3.1",
"@types/randomstring": "^1.1.6",
"@types/react": "^16.4.7",
"@types/react-dom": "^16.0.6",
"@types/react-helmet": "^5.0.6",
"@types/react-responsive": "^3.0.1",
"@types/rebass": "^0.2.22",
"@types/split.js": "^1.3.1",
"babel-plugin-styled-components": "^1.5.1",
"codemirror": "^5.38.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"gatsby": "^1.9.277",
"gatsby-link": "^1.6.46",
"gatsby-plugin-google-analytics": "^1.0.31",
"gatsby-plugin-manifest": "^1.0.27",
"gatsby-plugin-react-helmet": "^2.0.11",
"gatsby-plugin-styled-components": "^2.0.11",
"gatsby-plugin-typescript": "^1.4.20",
"jest": "^23.0.0",
"postcss-value-parser": "^3.3.0",
"randomstring": "^1.1.5",
"react": "^16.4.1",
"react-codemirror2": "^5.0.4",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-modal": "^3.5.1",
"react-responsive": "^5.0.0",
"rebass": "^2.0.0-2",
"split.js": "^1.3.5",
"styled-components": "^3.2.6",
"styled-system": "^2.2.5",
"styled-theming": "^2.2.0",
"ts-jest": "^23.1.3",
"typescript": "^2.9.2"
},
"dependencies": {},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testMatch": [
"<rootDir>/src/utils/*.spec.ts",
"<rootDir>/src/components/pages/Editor/*.spec.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}