-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.91 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
{
"name": "bitburner-scripts",
"description": "Files and scripts for the browser game Bitburner",
"license": "MIT",
"author": "Will Bowers <[email protected]>",
"private": true,
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"solve": "node ./scripts/solve.js",
"script-server": "cd src && http-server --cors",
"tix-api-server": "node ./scripts/tix-api-server.js",
"tix-validate": "node ./scripts/tix-validate.js"
},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"esm": "^3.2.25",
"express": "^4.16.4",
"http-server": "^0.11.1",
"jest": "^23.6.0",
"random": "^2.0.13",
"safe-eval": "^0.4.1",
"ts-node": "^10.9.2",
"uuid": "^3.3.2"
},
"jest": {
"modulePaths": [
"<rootDir>/src",
"<rootDir>/test",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"js",
"ns"
],
"verbose": true,
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.test.js"
],
"transform": {
"^.+\\.(js|ns)$": "babel-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
],
"setupFiles": [
"<rootDir>/test/setup.js"
]
},
"prettier": {
"printWidth": 120,
"trailingComma": "all",
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false,
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always"
},
"devDependencies": {
"nodemon": "^1.18.9"
}
}