-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.37 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
{
"name": "spicerack",
"version": "0.0.0",
"description": "A lightweight framework for frontend & backend applications written in Typescript.",
"main": "src/index.ts",
"repository": "[email protected]:mojocakes/spicerack.git",
"author": "James Cook <[email protected]>",
"license": "MIT",
"scripts": {
"packages:create": "node_modules/.bin/lerna create",
"packages:link": "node_modules/.bin/lerna bootstrap",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch",
"test:watch:verbose": "./node_modules/.bin/jest --watch --verbose"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"inversify": "^5.0.1",
"node-schedule": "^1.3.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/express": "^4.17.6",
"@types/jest": "^26.0.4",
"@types/node-schedule": "^1.3.0",
"@types/react-dom": "^16.9.8",
"babel-jest": "^26.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^26.1.0",
"lerna": "^3.22.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
}
}